-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgatsby-config.js
35 lines (34 loc) · 916 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
const path = require('path');
module.exports = {
siteMetadata: {
title: 'CSS Generator by Zinglecode',
description: 'Generate CSS (+ HTML) code with simple UI, by Zinglecode',
keywords: 'css, css-generator, react, gatsby, bulma',
author: 'Potchara Puttawanchai',
siteUrl: 'https://css-generator.netlify.app',
},
plugins: [
'gatsby-plugin-sass',
'gatsby-plugin-react-helmet',
'gatsby-plugin-sitemap',
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'CSS Generator by Zinglecode',
short_name: 'CSS Gen',
start_url: '/',
display: 'standalone',
background_color: '#FFFFFF',
theme_color: '#FFFFFF',
icon: 'src/images/icon.png',
},
},
'gatsby-plugin-offline',
{
resolve: 'gatsby-plugin-root-import',
options: {
z: path.join(__dirname, 'src'),
},
},
],
};