-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
gatsby-config.js
53 lines (52 loc) · 1.23 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
require("dotenv").config({
path: `.env.${process.env.NODE_ENV}`,
})
module.exports = {
siteMetadata: {
title: `Medusa Gatsby Starter`,
description: `Kick off your next, great e-commerce project with this default starter with Medusa, Gatsby and common dev tools.`,
author: `@medusajs`,
},
plugins: [
`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`,
},
},
],
}