mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-26 19:49:26 +01:00
26 lines
618 B
JavaScript
26 lines
618 B
JavaScript
|
module.exports = {
|
||
|
siteMetadata: {
|
||
|
title: 'Ocean Protocol Docs'
|
||
|
},
|
||
|
plugins: [
|
||
|
{
|
||
|
resolve: 'gatsby-source-filesystem',
|
||
|
options: {
|
||
|
name: 'images',
|
||
|
path: `${__dirname}/src/images`
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
resolve: 'gatsby-source-filesystem',
|
||
|
options: {
|
||
|
name: 'content',
|
||
|
path: `${__dirname}/content`
|
||
|
}
|
||
|
},
|
||
|
'gatsby-plugin-react-helmet',
|
||
|
'gatsby-transformer-sharp',
|
||
|
'gatsby-plugin-sharp'
|
||
|
// 'gatsby-plugin-offline',
|
||
|
]
|
||
|
}
|