-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-config.js
More file actions
30 lines (30 loc) · 797 Bytes
/
gatsby-config.js
File metadata and controls
30 lines (30 loc) · 797 Bytes
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
/** @type {import('gatsby').GatsbyConfig} */
module.exports = {
siteMetadata: {
title: `Frontend Mentor Challenges`,
siteUrl: `https://fm.crankygoblin.net`,
},
plugins: [
'gatsby-plugin-image',
'gatsby-plugin-react-helmet',
'gatsby-plugin-sharp',
'gatsby-plugin-sitemap',
'gatsby-plugin-vanilla-extract',
'gatsby-transformer-sharp',
{
resolve: 'gatsby-plugin-manifest',
options: {
lang: 'en-AU',
dir: 'ltr',
name: 'Frontend Mentor Challenges',
short_name: 'FM',
description:
"An iOS engineer's attempt at learning CSS and Javascript.",
start_url: '/',
theme_color: '#f7c948',
background_color: '#f7f7f7',
icon: 'src/images/favicon.png',
},
},
],
};