27 lines
497 B
JavaScript
27 lines
497 B
JavaScript
module.exports = {
|
|
siteMetadata: {
|
|
title: `Social OjO`,
|
|
siteUrl: `https://www.yourdomain.tld`
|
|
},
|
|
plugins: [
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
name: `pages`,
|
|
path: `${__dirname}/src`,
|
|
},
|
|
},
|
|
{
|
|
resolve: 'gatsby-plugin-google-gtag',
|
|
options: {
|
|
trackingIds: [
|
|
"G-TVTHN7455T",
|
|
],
|
|
},
|
|
},
|
|
"gatsby-plugin-image",
|
|
"gatsby-plugin-sharp",
|
|
"gatsby-transformer-sharp",
|
|
]
|
|
};
|