infoscreen/gatsby-config.js

18 lines
300 B
JavaScript
Raw Normal View History

2021-12-30 19:07:10 +01:00
module.exports = {
siteMetadata: {
siteUrl: "https://www.yourdomain.tld",
title: "infoscreen_gatsby",
},
2022-01-02 22:48:24 +01:00
plugins: [
"gatsby-plugin-typescript",
{
resolve: "gatsby-plugin-react-svg",
options: {
rule: {
2022-01-06 18:50:54 +01:00
include: /svg/
2022-01-02 22:48:24 +01:00
}
}
}
],
2021-12-30 19:07:10 +01:00
};