-
Notifications
You must be signed in to change notification settings - Fork 41
/
gatsby-config.ts
65 lines (63 loc) · 1.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import type { GatsbyConfig } from "gatsby"
const config: GatsbyConfig = {
siteMetadata: {
title: `UF Open Source Club`,
siteUrl: `https://ufosc.org`,
},
plugins: [
"gatsby-plugin-image",
"gatsby-plugin-sitemap",
"gatsby-plugin-mdx",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
"gatsby-plugin-webpack-bundle-analyser-v2",
{
resolve: "gatsby-transformer-remark",
options: {
plugins: [
{
resolve: "gatsby-remark-prismjs",
options: {
classPrefix: "language-",
inlineCodeMarker: null,
showLineNumbers: false,
},
}
],
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
"name": "images",
"path": "./src/images/"
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
"name": "content",
"path": "./src/content/"
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
"name": "projects",
"path": "./src/projects/"
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `UF Open Source Club`,
short_name: `UFOSC`,
start_url: `/`,
background_color: `#ffffff`,
display: `minimal-ui`,
icon: `src/images/favicon.png`,
},
},
]
}
export default config