mirror of
https://github.com/kingomarnajjar/innovationdrive.git
synced 2026-07-26 06:37:28 +10:00
38 lines
822 B
JavaScript
Executable file
38 lines
822 B
JavaScript
Executable file
module.exports = {
|
|
siteMetadata: {
|
|
title: 'Gatsby + Netlify CMS Starter',
|
|
},
|
|
plugins: [
|
|
'gatsby-plugin-react-helmet',
|
|
'gatsby-plugin-sass',
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
path: `${__dirname}/src/pages`,
|
|
name: 'pages',
|
|
},
|
|
},
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
path: `${__dirname}/src/img`,
|
|
name: 'images',
|
|
},
|
|
},
|
|
'gatsby-plugin-sharp',
|
|
'gatsby-transformer-sharp',
|
|
{
|
|
resolve: 'gatsby-transformer-remark',
|
|
options: {
|
|
plugins: [],
|
|
},
|
|
},
|
|
{
|
|
resolve: 'gatsby-plugin-netlify-cms',
|
|
options: {
|
|
modulePath: `${__dirname}/src/cms/cms.js`,
|
|
},
|
|
},
|
|
'gatsby-plugin-netlify', // make sure to keep it last in the array
|
|
],
|
|
}
|