infoscreen/gatsby-config.js

18 lines
339 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: {
include: /weather/ // See below to configure properly
}
}
}
],
2021-12-30 19:07:10 +01:00
};