-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
gatsby-config.ts
36 lines (34 loc) · 1021 Bytes
/
gatsby-config.ts
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
import type { GatsbyConfig } from "gatsby";
const config: GatsbyConfig = {
jsxRuntime: "automatic",
graphqlTypegen: {
generateOnBuild: true, // for running 'typecheck' script on GitHub actions.
},
trailingSlash: "never",
siteMetadata: {
title: "Noice: Natural calming noise",
description:
"Customisable soundscapes with Noice - Create personalised ambient atmospheres by blending various sounds and adjusting volume levels.",
siteUrl:
(process.env.CONTEXT === "production"
? process.env.URL
: process.env.DEPLOY_PRIME_URL) || "http://localhost:8000",
},
plugins: [
"@chakra-ui/gatsby-plugin",
{
resolve: "gatsby-plugin-manifest",
options: {
name: "Noice",
short_name: "Noice",
start_url: "/",
background_color: "#ffffff",
theme_color: "#23232d",
display: "standalone",
icon: "src/assets/icon-round.png",
crossOrigin: "anonymous",
},
},
],
};
export default config;