-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
41 lines (41 loc) · 997 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
36
37
38
39
40
41
/* eslint-disable @typescript-eslint/camelcase */
/* eslint-disable no-undef */
module.exports = {
siteMetadata: {
title: 'TexLab',
description: 'LaTeX Language Server',
author: 'Eric Förster',
},
plugins: [
'gatsby-plugin-typescript',
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'pages',
path: `${__dirname}/src/pages`,
},
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'TexLab',
short_name: 'TexLab',
start_url: '/',
background_color: '#ffffff',
theme_color: '#00e676',
display: 'minimal-ui',
icon: 'src/assets/images/icon.png',
},
},
'gatsby-plugin-sass',
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: ['gatsby-remark-autolink-headers', 'gatsby-remark-prismjs'],
},
},
'gatsby-plugin-catch-links',
'gatsby-plugin-offline',
],
};