mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-02 00:05:35 +01:00
76 lines
2.2 KiB
JavaScript
Executable File
76 lines
2.2 KiB
JavaScript
Executable File
module.exports = {
|
|
siteMetadata: {
|
|
title: 'Ocean Protocol Documentation',
|
|
description:
|
|
'Learn everything about how to develop with Ocean Prototocol',
|
|
siteUrl: process.env.SITE_URL || 'https://docs.oceanprotocol.com'
|
|
},
|
|
plugins: [
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
name: 'images',
|
|
path: `${__dirname}/src/images`
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
name: 'content',
|
|
path: `${__dirname}/content`
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
name: 'data',
|
|
path: `${__dirname}/data`
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-transformer-remark',
|
|
options: {
|
|
plugins: [
|
|
{
|
|
resolve: 'gatsby-remark-images',
|
|
options: {
|
|
maxWidth: 640,
|
|
quality: 80,
|
|
withWebp: true,
|
|
linkImagesToOriginal: false,
|
|
showCaptions: true
|
|
}
|
|
},
|
|
'gatsby-remark-smartypants',
|
|
'gatsby-remark-prismjs',
|
|
'gatsby-remark-autolink-headers',
|
|
'gatsby-remark-relative-linker'
|
|
]
|
|
}
|
|
},
|
|
'gatsby-transformer-yaml',
|
|
{
|
|
resolve: 'gatsby-plugin-sass',
|
|
options: {
|
|
includePaths: [
|
|
`${__dirname}/node_modules`,
|
|
`${__dirname}/src/styles`
|
|
]
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-plugin-svgr',
|
|
options: {
|
|
icon: true,
|
|
viewBox: false
|
|
// see https://github.com/smooth-code/svgr for a list of all options
|
|
}
|
|
},
|
|
'gatsby-plugin-catch-links',
|
|
'gatsby-plugin-react-helmet',
|
|
'gatsby-transformer-sharp',
|
|
'gatsby-plugin-sharp'
|
|
// 'gatsby-plugin-offline',
|
|
]
|
|
}
|