-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
46 lines (46 loc) · 1.58 KB
/
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
43
44
45
46
module.exports = {
plugins: [
{
resolve: "gatsby-theme-portfolio-minimal",
options: {
siteUrl: "https://snubayes.org/", // Used for sitemap generation
manifestSettings: {
favicon: "./content/images/logo/snu/snu_ui_favicon.png", // Path is relative to the root
siteName: "SNUBAYES", // Used in manifest.json
shortName: "snubayes", // Used in manifest.json
startUrl: "/", // Used in manifest.json
backgroundColor: "#FFFFFF", // Used in manifest.json
themeColor: "#000000", // Used in manifest.json
display: "minimal-ui", // Used in manifest.json
},
contentDirectory: "./content",
blogSettings: {
entityName: "게시물",
path: "/blog", // Defines the slug for the blog listing page
usePathPrefixForArticles: true, // Default true (i.e. path will be /blog/first-article)
}
// googleAnalytics: {
// trackingId: "UA-XXXXXX-X",
// anonymize: true, // Default true
// environments: ["production", "development"] // Default ["production"]
// }
},
},
// {
// resolve: `gatsby-source-google-calendar`,
// options: {
// calendarIds: [
// '[email protected]',
// ],
// // options to retrieve the next 10 upcoming events
// timeMin: (new Date()).toISOString(),
// maxResults: 10,
// singleEvents: true,
// orderBy: 'startTime',
// }
// },
],
// flags: {
// DEV_SSR: true,
// },
};