-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
57 lines (57 loc) · 1.71 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
module.exports = {
siteMetadata: {
title: `Assisted Intern`,
description: `Assisted Intern: Find internships, jobs in Ghana`,
author: `@taytonyeli`
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-image`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`
}
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-sass`,
options: {
sassOptions: {
precision: 6
}
}
},
`gatsby-plugin-material-ui`,
{
resolve: `gatsby-plugin-purgecss`,
options: {
printRejected: true, // Print removed selectors and processed file names
// develop: true, // Enable while using `gatsby develop`
// tailwind: true, // Enable tailwindcss support
ignore: ['react-datepicker.css'], // Ignore files/folders
// purgeOnly : ['components/', '/main.css', 'bootstrap/'], // Purge only these files/folders
purgeCSSOptions: {
// https://purgecss.com/configuration.html#options
safelist: ['html', 'body', 'collapse', 'collapsing', 'show'], // Don't remove this selector
}
// More options defined here https://purgecss.com/configuration.html#options
}
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `quick-intern`,
short_name: `quick-intern`,
start_url: `/`,
background_color: `#663399`,
theme_color: `#663399`,
display: `standalone`,
icon: `src/images/gatsby-icon.png` // This path is relative to the root of the site.
}
}
// `gatsby-plugin-gatsby-cloud`,
]
}