18 lines
300 B
JavaScript
18 lines
300 B
JavaScript
module.exports = {
|
|
siteMetadata: {
|
|
siteUrl: "https://www.yourdomain.tld",
|
|
title: "infoscreen_gatsby",
|
|
},
|
|
plugins: [
|
|
"gatsby-plugin-typescript",
|
|
{
|
|
resolve: "gatsby-plugin-react-svg",
|
|
options: {
|
|
rule: {
|
|
include: /svg/
|
|
}
|
|
}
|
|
}
|
|
],
|
|
};
|