forked from lugnitdgp/digitalfortress_frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.js
38 lines (37 loc) · 875 Bytes
/
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
require("dotenv").config();
module.exports = {
siteMetadata: {
title: `Digital Fortress`,
description: `Now test your investigation skills and compete with your friends.`,
author: `@romitkarmakar`
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-material-ui`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-plugin-s3`,
options: {
bucketName: 'quiz.nitdgplug.org',
protocol: "https",
hostname: "quiz.nitdgplug.org",
},
},
{
resolve: `gatsby-plugin-nprogress`,
options: {
// Setting a color is optional.
color: `tomato`,
// Disable the loading spinner.
showSpinner: true,
},
},
`gatsby-plugin-offline`
],
}