-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgatsby-config.ts
49 lines (47 loc) · 1.14 KB
/
gatsby-config.ts
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
39
40
41
42
43
44
45
46
47
48
49
import type { GatsbyConfig } from 'gatsby';
import { resolve } from 'node:path';
const config: GatsbyConfig = {
siteMetadata: {
title: 'HTML Style Guide',
description: 'A style guide which helps you write better, performant, structured, scalable and maintainable HTML.',
author: '@BiedermannMarco',
github: {
url: 'https://github.com/marcobiedermann/html-style-guide',
},
},
plugins: [
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'HTML Style Guide',
short_name: 'HTMLStyleGuide',
start_url: '/',
background_color: '#e34f26',
theme_color: '#e34f26',
display: 'minimal-ui',
icon: 'src/images/favicon.png',
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'data',
path: resolve('src/data'),
},
},
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
{
resolve: 'gatsby-remark-autolink-headers',
},
{
resolve: 'gatsby-remark-prismjs',
},
],
},
},
],
};
export default config;