-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
44 lines (42 loc) · 1.01 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
/* eslint-disable @typescript-eslint/camelcase */
/* eslint-disable global-require */
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.org/docs/gatsby-config/
*/
module.exports = {
plugins: [
"gatsby-plugin-typescript",
"gatsby-plugin-root-import",
"gatsby-plugin-react-helmet",
{
resolve: "gatsby-plugin-postcss",
options: {
postCssPlugins: [require("tailwindcss"), require("autoprefixer")],
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: "Price Calculator",
short_name: "Price Calculator",
start_url: "/",
background_color: "#4299e1",
theme_color: "#4299e1",
display: "standalone",
icon: "src/assets/icon-512x512.png",
crossOrigin: `use-credentials`,
cache_busting_mode: "none",
},
},
{
resolve: "gatsby-plugin-offline",
options: {
workboxConfig: {
globPatterns: ["**/*"],
},
},
},
],
};