-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
24 lines (23 loc) · 941 Bytes
/
gatsby-config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const siteMetadata = require("./gatsby/config/site-metadata");
const gatsbySourceFilesystem = require("./gatsby/config/plugins/gatsby-source-filesystem");
const gatsbyPluginMDX = require("./gatsby/config/plugins/gatsby-plugin-mdx");
const gatsbyPluginReactSVG = require("./gatsby/config/plugins/gatsby-plugin-react-svg");
const gatsbyPluginManifest = require("./gatsby/config/plugins/gatsby-plugin-manifest");
const gatsbyPluginCanonicalUrls = require("./gatsby/config/plugins/gatsby-plugin-canonical-urls");
module.exports = {
siteMetadata,
plugins: [
`gatsby-plugin-mdx-source-name`,
gatsbySourceFilesystem("blog"),
gatsbySourceFilesystem("projects"),
gatsbySourceFilesystem("assets"),
gatsbyPluginMDX,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
gatsbyPluginReactSVG,
gatsbyPluginManifest,
`gatsby-plugin-offline`,
`gatsby-plugin-react-helmet`,
gatsbyPluginCanonicalUrls
]
};