-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.js
53 lines (51 loc) · 1.32 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
const path = require(`path`);
require('dotenv').config({
path: `.env`,
});
module.exports = {
siteMetadata: {
title: `Blaque Photography`,
description: 'Capturing Experience, Not Just Another Photograph.',
},
plugins: [
{
resolve: `gatsby-source-prismic`,
options: {
repositoryName: process.env.PRISMIC_REPOSITORY_NAME,
accessToken: process.env.PRISMIC_ACCESS_TOKEN,
schemas: {
imagecollection: require('./src/schemas/imagecollection.json'),
about: require('./src/schemas/about.json'),
contact: require('./src/schemas/contact.json'),
homepage: require('./src/schemas/homepage.json'),
},
},
},
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [`Playfair Display\:400`, `IBM Plex Sans\:400`],
display: 'swap',
},
},
{
resolve: `gatsby-plugin-styled-components`,
options: {
displayName: true,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Blaque Photography`,
short_name: `Blaqie`,
start_url: `/`,
background_color: `#e7d4c1`,
theme_color: `#e7d4c1`,
display: `standalone`,
icon: `src/images/icon.png`,
},
},
`gatsby-plugin-react-helmet`,
],
};