forked from fntechgit/fnevent-2025lfsb-theme
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgatsby-config.js
More file actions
30 lines (30 loc) · 705 Bytes
/
Copy pathgatsby-config.js
File metadata and controls
30 lines (30 loc) · 705 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: `KCD Toronto 2026`,
siteUrl: `https://kcdtoronto.ca`
},
plugins: ["gatsby-plugin-image", "gatsby-plugin-sitemap", {
resolve: 'gatsby-plugin-manifest',
options: {
"icon": "static/toronto-cncf.png",
"lang": "en"
}
}, "gatsby-plugin-mdx", "gatsby-plugin-sharp", "gatsby-transformer-sharp", {
resolve: 'gatsby-source-filesystem',
options: {
"name": "images",
"path": "./src/images/"
},
__key: "images"
}, {
resolve: 'gatsby-source-filesystem',
options: {
"name": "pages",
"path": "./src/pages/"
},
__key: "pages"
}]
};