-
Notifications
You must be signed in to change notification settings - Fork 2
/
gatsby-config.js
36 lines (35 loc) · 925 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
31
32
33
34
35
36
require("dotenv").config({
path: `.env.${process.env.NODE_ENV}`,
})
module.exports = {
siteMetadata: {
siteUrl: "https://gatsbykontent-aihomepage.gatsbyjs.io/",
title: "Gatsby Kontent.ai Homepage Starter",
author: `Gatsby`,
description: "A Gatsby Starter for building homepages with Kontent.ai",
},
plugins: [
{
resolve: `@kontent-ai/gatsby-source`,
options: {
projectId: process.env.KONTENT_PROJECT_ID,
languageCodenames: [`en-US`],
},
},
"gatsby-plugin-sharp",
"gatsby-plugin-image",
"gatsby-transformer-sharp",
"gatsby-plugin-vanilla-extract",
{
resolve: "gatsby-plugin-manifest",
options: {
name: "Gatsby Starter Kontent.ai Homepage",
short_name: "Gatsby",
start_url: "/",
background_color: "#41D9C5",
theme_color: "#231F20",
icon: "src/favicon.png",
},
},
],
}