-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
34 lines (34 loc) · 948 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
module.exports = {
siteMetadata: {
title: `Launch Portals`,
description: `A portal for launching a showcase of your best work.`,
author: `@scottgrivner`, // Update with your information
siteUrl: `https://scottgrivner.dev`, // Update with your site URL
},
plugins: [
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `portals`,
path: `${__dirname}/src/portals`,
},
},
`gatsby-transformer-remark`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Launch Portals`,
short_name: `Launch Portals`,
start_url: `/`,
background_color: `#FA6400`,
theme_color: `#FA6400`,
icon: `src/images/icon.png`, // Ensure this path is correct.
display: `standalone`,
},
},
// Add other plugins here as needed.
],
};