-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
42 lines (42 loc) · 995 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
42
module.exports = {
pathPrefix: "/foss4g-na-2024",
siteMetadata: {
title: `FOSS4G NA St. Louis 2024`,
description: `An Open Source Geospatial Technology Conference`,
author: `@guidos`,
},
plugins: [
`gatsby-plugin-image`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
// path: `${__dirname}/src/images`,
path: `src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-sass`,
options: {
sassOptions: {
precision: 6,
},
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `gatsby-starter-bootstrap-5`,
short_name: `gb5-starter`,
start_url: `/`,
background_color: `#000`,
theme_color: `#000`,
display: `standalone`,
icon: `src/images/square_logo_foss4gna_stl_2024.png`,
},
},
`gatsby-plugin-gatsby-cloud`,
],
}