-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.ts
75 lines (71 loc) · 1.84 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import type { GatsbyConfig } from 'gatsby';
require('dotenv').config({
path: `.env.${process.env.NODE_ENV}`,
});
const PROD_PLUGINS = process.env.NODE_ENV !== 'production' ? [] : [];
const config: GatsbyConfig = {
flags: {
// https://www.gatsbyjs.com/docs/how-to/performance/partial-hydration/
// PARTIAL_HYDRATION: true,
DEV_SSR: true,
},
siteMetadata: {
title: `Mobile Combos`,
siteUrl: `https://mobilecombos.com`,
},
// More easily incorporate content into your pages through automatic TypeScript type generation and better GraphQL IntelliSense.
// If you use VSCode you can also use the GraphQL plugin
// Learn more at: https://gatsby.dev/graphql-typegen
graphqlTypegen: true,
plugins: [
'gatsby-plugin-cloudflare-pages',
{
resolve: `gatsby-plugin-emotion`,
options: {
sourceMap: true,
autoLabel: 'always',
labelFormat: `[local]`,
cssPropOptimization: true,
},
},
`gatsby-plugin-less`,
`gatsby-plugin-provide-react`,
{
resolve: 'gatsby-plugin-manifest',
options: {
icon: 'src/assets/icons/phone-wireless.svg',
},
},
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [`Atkinson Hyperlegible\:400,400i,700`, `Azeret Mono\:400`],
display: 'swap',
},
},
`gatsby-source-local-git`,
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /\.inline\.svg$/,
},
},
},
{
resolve: `gatsby-plugin-sitemap`,
options: {
resolveSiteUrl: () => 'https://mobilecombos.com',
excludes: ['/admin/**/*'],
},
},
{
resolve: `gatsby-plugin-canonical-urls`,
options: {
siteUrl: `https://mobilecombos.com`,
},
},
...PROD_PLUGINS,
],
};
export default config;