-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.js
74 lines (73 loc) · 1.83 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
require("dotenv").config({
path: `.env.${process.env.NODE_ENV}`,
})
module.exports = {
siteMetadata: {
title: `BNM Store`,
description: `Kick off your next, great e-commerce project with this default starter with Medusa, Gatsby and common dev tools.`,
author: `@medusajs`,
},
plugins: [
{
resolve: `gatsby-omni-font-loader`,
options: {
enableListener: true,
preconnect: [`https://fonts.googleapis.com`, `https://fonts.gstatic.com`],
web: [
{
name: `Open Sans`,
file: `https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap`,
},
{
name: `Montserrat`,
file: `https://fonts.googleapis.com/css?family=Montserrat`,
},
{
name: `Outfit`,
file: `https://fonts.googleapis.com/css?family=Outfit`
}
],
},
},
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
"gatsby-plugin-mdx",
{
resolve: "gatsby-source-filesystem",
options: {
name: "info",
path: `${__dirname}/src/content/info/`,
},
},
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
{
resolve: `gatsby-plugin-postcss`,
options: {
postCssPlugins: [require("tailwindcss"), require("autoprefixer")],
},
},
{
resolve: `gatsby-plugin-purgecss`,
options: {
printRejected: false,
develop: false,
tailwind: true,
},
},
{
resolve: `gatsby-source-medusa`,
options: {
storeUrl:
process.env.GATSBY_MEDUSA_BACKEND_URL || `http://localhost:9000`,
},
},
],
}