-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
30 lines (29 loc) · 898 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
25
26
27
28
29
30
// require("dotenv").config({
// path: `.env.${process.env.NODE_ENV}`,
// })
module.exports = {
siteMetadata: {
title: `Kristin van Ogtrop`,
description: `Home of author Kristin van Ogtrop, former editor-in-cheif of Real Simple.`,
author: `Lydia Gregory`,
},
plugins: [
"gatsby-plugin-sass",
"gatsby-plugin-react-helmet",
{
resolve: "gatsby-source-prismic",
options: {
repositoryName: 'kvowebsite',
// linkResolver: () => (doc) => linkResolver(doc),
schemas: {
page: require('./cutom_types/page.json'),
nav: require('./cutom_types/nav.json'),
footer: require('./cutom_types/footer.json'),
contact: require('./cutom_types/contact.json'),
books: require('./cutom_types/books.json'),
"book_page": require('./cutom_types/book_page.json')
},
}
}
],
};