1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00
docs/gatsby-config.js

100 lines
2.8 KiB
JavaScript
Raw Normal View History

2018-11-09 21:39:56 +01:00
const title = 'Ocean Protocol Documentation'
const description =
'Learn everything about how to develop with Ocean Prototocol'
const siteUrl = process.env.SITE_URL || 'https://docs.oceanprotocol.com'
2018-11-07 12:24:53 +01:00
module.exports = {
siteMetadata: {
2018-11-09 21:39:56 +01:00
title,
description,
siteUrl
2018-11-07 12:24:53 +01:00
},
plugins: [
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: `${__dirname}/src/images`
}
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'content',
path: `${__dirname}/content`
}
},
2018-11-08 14:49:09 +01:00
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'data',
2018-11-08 14:53:46 +01:00
path: `${__dirname}/data`
2018-11-08 14:49:09 +01:00
}
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'art',
path: `${__dirname}/node_modules/@oceanprotocol/art`
}
},
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
{
resolve: 'gatsby-remark-images',
options: {
2018-11-08 22:52:42 +01:00
maxWidth: 640,
2018-11-08 13:21:39 +01:00
quality: 80,
withWebp: true,
linkImagesToOriginal: false,
showCaptions: true
}
},
2018-11-08 13:21:39 +01:00
'gatsby-remark-smartypants',
'gatsby-remark-prismjs',
2018-11-08 16:03:16 +01:00
'gatsby-remark-autolink-headers',
'gatsby-remark-relative-linker'
]
}
},
2018-11-08 10:44:46 +01:00
'gatsby-transformer-yaml',
{
resolve: 'gatsby-plugin-sass',
options: {
2018-11-09 13:57:11 +01:00
includePaths: [
`${__dirname}/node_modules`,
`${__dirname}/src/styles`
]
}
},
2018-11-09 21:39:56 +01:00
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
2018-11-07 17:00:54 +01:00
{
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',
2018-11-07 12:24:53 +01:00
'gatsby-plugin-react-helmet',
2018-11-09 21:39:56 +01:00
{
resolve: 'gatsby-plugin-manifest',
options: {
name: title,
short_name: 'Docs',
start_url: '/',
background_color: '#e2e2e2',
theme_color: '#141414',
display: 'minimal-ui',
icon: 'src/images/profile.png'
}
},
'gatsby-plugin-offline'
2018-11-07 12:24:53 +01:00
]
}