Landing/gatsby-config.js
Sergejs Kozinecs 9f4dd67156 gtag workaround
2022-11-22 13:58:13 +02:00

35 lines
805 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",
},
],
};