-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
32 lines (31 loc) · 915 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
const path = require('path');
module.exports = {
pathPrefix: '/',
siteMetadata: {
title: `Gabriel Ting`,
description: `My personal portfolio website`,
author: `@gtangelo`,
siteUrl: `https://gtangelo.com/`,
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-image`,
`gatsby-plugin-styled-components`,
{
resolve: 'gatsby-plugin-root-import',
options: {
components: path.join(__dirname, 'src/components'),
templates: path.join(__dirname, 'src/templates'),
assets: path.join(__dirname, 'src/assets'),
src: path.join(__dirname, 'src'),
pages: path.join(__dirname, 'src/pages'),
data: path.join(__dirname, 'src/data'),
views: path.join(__dirname, 'src/views'),
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
'gatsby-plugin-eslint',
`gatsby-theme-material-ui`,
],
};