doc.silverstripe.org/gatsby-config.js

77 lines
1.9 KiB
JavaScript

module.exports = {
siteMetadata: {
title: `SilverStripe Documentation`,
description: `Developer documentation for the SilverStripe CMS and framework.`,
author: `The Silverstripe Community`,
siteUrl: `https://doc.silverstripe.org`,
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-sass`,
`gatsby-plugin-sharp`,
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `files`,
path: `${__dirname}/static`
}
},
{
resolve: `gatsby-source-git`,
options: {
name: `4`,
remote: `https://github.com/unclecheese/silverstripe-framework.git`,
branch: `pulls/4/gatsby-docs`,
patterns: `docs/en/**`
}
},
{
resolve: `gatsby-source-git`,
options: {
name: `3`,
remote: `https://github.com/unclecheese/silverstripe-framework.git`,
branch: `pulls/3/gatsby-docs`,
patterns: `docs/en/**`
}
},
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
'gatsby-remark-prismjs',
`gatsby-remark-copy-linked-files`,
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 850,
},
},
]
}
},
`gatsby-plugin-typescript`,
{
resolve: `gatsby-plugin-styled-components`,
options: {
// Add any options here
},
},
{
resolve: `gatsby-plugin-purgecss`,
options: {
printRejected: false,
whitelist: ['algolia-autocomplete'],
ignore: ['prismjs/','docsearch.js/', 'src/theme/assets/search/algolia.css'],
//purgeOnly : ['components/', '/main.css', 'bootstrap/'],
}
},
{
resolve: `gatsby-plugin-offline`,
options: {
precachePages: [`/en/4/developer_guides/*`],
},
}
],
}