35 lines
787 B
JavaScript
35 lines
787 B
JavaScript
module.exports = {
|
|
siteMetadata: {
|
|
siteUrl: "https://www.midcreative.eu",
|
|
title: "MID Creative",
|
|
description: "We are creating websites, mobile apps, e-shops, platforms",
|
|
},
|
|
plugins: [
|
|
"gatsby-plugin-sass",
|
|
"gatsby-plugin-image",
|
|
{
|
|
resolve: "gatsby-plugin-google-analytics",
|
|
options: {
|
|
trackingId: "G-8M9CZ79T4L",
|
|
},
|
|
},
|
|
"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",
|
|
},
|
|
],
|
|
};
|