-
Notifications
You must be signed in to change notification settings - Fork 5
/
nuxt.config.js
146 lines (139 loc) · 4.06 KB
/
nuxt.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
export default {
mode: 'universal',
/*
** Headers of the page
*/
head: {
title: 'Yobikake | あなたの呼びかけからはじめよう',
htmlAttrs: {
lang: 'ja'
},
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{
hid: 'description',
name: 'description',
content:
'Yobikakeは、SNSを使ってワンクリックで誰もが呼びかけを発信できるサービスです。新型コロナウィルスの感染が拡大するなか、高校生の自分たちにできることはないかと考え、立ち上げました。あなたの呼びかけからはじめよう。皆さんの力を合わせて新型コロナウィルスの拡大を抑えましょう!一人ひとりの呼びかけが大きな力になります。ぜひご自身のSNSでシェアをお願いします。'
},
{
hid: 'og:site_name',
property: 'og:site_name',
content: 'Yobikake | あなたの呼びかけからはじめよう'
},
{ hid: 'og:type', property: 'og:type', content: 'website' },
{
hid: 'og:url',
property: 'og:url',
content: 'https://yobikake.com/'
},
{
hid: 'og:title',
property: 'og:title',
content: 'Yobikake | あなたの呼びかけからはじめよう'
},
{
hid: 'og:description',
property: 'og:description',
content:
'Yobikakeは、SNSを使ってワンクリックで誰もが呼びかけを発信できるサービスです。新型コロナウィルスの感染が拡大するなか、高校生の自分たちにできることはないかと考え、立ち上げました。あなたの呼びかけからはじめよう。皆さんの力を合わせて新型コロナウィルスの拡大を抑えましょう!一人ひとりの呼びかけが大きな力になります。ぜひご自身のSNSでシェアをお願いします。'
},
{
hid: 'og:image',
property: 'og:image',
content: 'https://yobikake.com/ogp.png'
},
{
hid: 'fb:app_id',
property: 'fb:app_id',
content: '640540216785473'
},
{
hid: 'twitter:card',
name: 'twitter:card',
content: 'summary_large_image'
},
{
hid: 'note:card',
property: 'note:card',
content: 'summary_large_image'
}
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{
rel: 'stylesheet',
href: 'https://use.fontawesome.com/releases/v5.6.1/css/all.css'
},
{
rel: 'stylesheet',
href:
'https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap'
}
]
},
/*
** Customize the progress-bar color
*/
loading: { color: '#fff' },
/*
** Global CSS
*/
css: [],
/*
** Plugins to load before mounting the App
*/
plugins: [],
/*
** Nuxt.js modules
*/
modules: [
'@nuxtjs/pwa',
[
'@nuxtjs/google-analytics',
{
id: 'UA-163397212-1' || 'dummy'
}
],
'@nuxtjs/sitemap'
],
buildModules: ['@nuxtjs/imagemin'],
sitemap: {
path: '/sitemap.xml',
hostname: 'https://yobikake.com',
cacheTime: 1000 * 60 * 15,
gzip: true,
exclude: [''],
routes: ['/about', '/contributors']
},
/*
** Build configuration
*/
build: {
/*
** You can extend webpack config here
*/
extend(config, ctx) {
// Run ESLint on save
if (ctx.isDev && ctx.isClient) {
config.module.rules.push({
enforce: 'pre',
test: /\.(js|vue)$/,
loader: 'eslint-loader',
exclude: /(node_modules)/
})
}
}
},
/* Toggle minify settings */
collapseBooleanAttributes: true,
decodeEntities: true,
minifyCSS: true,
minifyJS: true,
processConditionalComments: true,
removeEmptyAttributes: true,
removeRedundantAttributes: true,
trimCustomFragments: true,
useShortDoctype: true
}