-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
33 lines (32 loc) · 881 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
'use strict'
const path = require('path');
module.exports = {
siteMetadata: {
title: 'UNSW Security Society',
description: 'Key part of the security community within UNSW.',
keywords: 'secsoc, unswsecurity, security, unsw, unswsecuritysociety, securitysociety, society',
siteUrl: 'https://unswsecurity.com',
author: {
name: 'UNSw Security Projects Team',
email: 'projects@unswsecurity.com'
}
},
plugins: [
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'src',
path: `${__dirname}/src/`
}
},
'gatsby-plugin-eslint',
'gatsby-plugin-typescript',
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
'gatsby-plugin-react-helmet',
'gatsby-plugin-styled-components',
`gatsby-theme-material-ui`,
'gatsby-plugin-resolve-src',
`gatsby-transformer-remark`
]
};