34 lines
715 B
JavaScript
34 lines
715 B
JavaScript
module.exports = {
|
|
siteMetadata: {
|
|
siteUrl: "https://www.yourdomain.tld",
|
|
title: "MID Creative",
|
|
},
|
|
plugins: [
|
|
"gatsby-plugin-sass",
|
|
"gatsby-plugin-image",
|
|
// {
|
|
// resolve: "gatsby-plugin-google-analytics",
|
|
// options: {
|
|
// trackingId: "",
|
|
// },
|
|
// },
|
|
"gatsby-plugin-react-helmet",
|
|
"gatsby-plugin-sitemap",
|
|
{
|
|
resolve: "gatsby-plugin-manifest",
|
|
options: {
|
|
icon: "src/images/icon.png",
|
|
},
|
|
},
|
|
"gatsby-plugin-sharp",
|
|
"gatsby-transformer-sharp",
|
|
{
|
|
resolve: "gatsby-source-filesystem",
|
|
options: {
|
|
name: "images",
|
|
path: "./src/images/",
|
|
},
|
|
__key: "images",
|
|
},
|
|
],
|
|
};
|