-
Notifications
You must be signed in to change notification settings - Fork 0
/
gridsome.config.js
111 lines (108 loc) · 3.45 KB
/
gridsome.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
// This is where project configuration and plugin options are located.
// Learn more: https://gridsome.org/docs/config
// Changes here require a server restart.
// To restart press CTRL + C in terminal and run `gridsome develop`
require('dotenv').config()
module.exports = {
siteName: "msaschool",
icon: {
favicon: "./static/favicon.png",
touchicon: "./static/favicon.png"
},
runtimeCompiler: true,
siteUrl: process.env.SITE_URL ? process.env.SITE_URL :'https://msaschool.github.io',
settings: {
web: process.env.URL_WEB || false,
twitter: process.env.URL_TWITTER || false,
github: process.env.URL_GITHUB || false,
nav: {
links: [
// { path: "/introduction/", title: "소개" },
// { path: "/planning/", title: "계획단계" },
// { path: "/operation/analysis", title: "설계/운영/구현 단계" },
// { path: "/references/methods", title: "참고자료" },
// { path: "/community/", title: "커뮤니티 및 교육" }
]
},
sidebar: [
{
name: "docs",
sections: [
{
title: "최종수립!!!",
items: [
"/docs/",
"/docs/installation/",
"/docs/writing-content/",
"/docs/deploying/"
]
},
{
title: "Configuration",
items: ["/docs/settings/", "/docs/sidebar/"]
}
]
}
]
},
chainWebpack: config => config.mode('development'),
// chainWebpack: config => {
// config
// .plugin('env')
// .use(require.resolve('webpack/lib/EnvironmentPlugin'), ['MEANING_OF_LIFE'])
// },
plugins: [
// {
// use: "@gridsome/source-filesystem",
// options: {
// baseDir: "./content",
// path: "**/*.md",
// typeName: "MarkdownPage"
// }
// },
{
use: "@gridsome/source-filesystem",
options: {
typeName: "VuePage",
baseDir: "./src/content/msaschool",
path: "**/*.vue",
plugins: ["@gridsome/remark-prismjs"]
// remark: {
// externalLinksTarget: '_blank',
// externalLinksRel: ['noopener', 'noreferrer'],
// plugins: [
// '@gridsome/remark-prismjs'
// ]
// }
}
},
{
use: "gridsome-plugin-tailwindcss",
options: {
tailwindConfig: "./tailwind.config.js",
purgeConfig: {
// Prevent purging of prism classes.
whitelistPatternsChildren: [/token$/]
}
}
},
{
use: "@gridsome/plugin-google-analytics",
options: {
id: 'UA-153107610-2'
}
},
{
use: "@gridsome/plugin-sitemap",
options: {}
},
],
// transformers: {
// remark: {
// plugins: [
// '@gridsome/remark-prismjs',
// 'remark-attr'
// ]
// }
// }
};