site/gatsby-config.js
2020-01-15 17:45:50 +03:00

58 lines
1.3 KiB
JavaScript

module.exports = {
siteMetadata: {
title: `MIPT-NPM group`,
description: `Nuclear Physics Methods Laboratory`,
},
plugins: [
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
'gatsby-remark-katex',
'gatsby-remark-relative-images',
{
resolve: 'gatsby-remark-images',
options: {
maxWidth: 100
}
},
],
},
},
// {
// resolve: "gatsby-remark-normalize-paths",
// options: {
// pathFields: ["image", "cover"]
// },
// },
`gatsby-plugin-react-helmet`,
{
resolve: 'gatsby-source-filesystem',
options: {
path: `${__dirname}/src/images`,
name: 'images',
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/src/pages/content`,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `gatsby-starter-default`,
short_name: `npm`,
start_url: `/`,
display: `minimal-ui`,
icon: `src/images/icon.png`, // This path is relative to the root of the site.
},
},
`gatsby-plugin-netlify-cms`,
],
}