require('dotenv').config() const siteConfig = require('./content/site.json') module.exports = { siteMetadata: { ...siteConfig.site }, plugins: [ { resolve: 'gatsby-source-filesystem', options: { name: 'content', path: `${__dirname}/content` } }, { resolve: 'gatsby-source-filesystem', options: { name: 'images', path: `${__dirname}/src/images` } }, { resolve: 'gatsby-source-filesystem', options: { name: 'art', path: `${__dirname}/node_modules/@oceanprotocol/art/` } }, 'gatsby-transformer-json', 'gatsby-transformer-remark', { resolve: 'gatsby-plugin-svgr', options: { icon: false, svgoConfig: { plugins: [{ removeViewBox: false }] } } }, 'gatsby-plugin-react-helmet', 'gatsby-plugin-remove-trailing-slashes', 'gatsby-plugin-webpack-size' ] }