Landing/gatsby-config.js
2022-08-08 00:22:18 +03:00

35 lines
793 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: "",
// },
// },
"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",
},
],
};