This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
nuxt.config.ts
275 lines (273 loc) · 6.66 KB
/
nuxt.config.ts
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
/* eslint-disable simple-import-sort/imports -- `@nuxt/types` import should occur after import of `path` */
import fs from 'fs'
import path from 'path'
import { NuxtConfig } from '@nuxt/types'
// eslint-disable-next-line no-restricted-imports
import i18n from './nuxt-i18n.config'
// @ts-ignore
import { Settings } from '@/types/cardRoutesSettings'
const environment = process.env.NODE_ENV || 'development'
const cardData = JSON.parse(
fs.readFileSync(
path.resolve(__dirname, 'assets/json/cardRoutesSettings.json'),
'utf8'
)
)
const config: NuxtConfig = {
// Since [email protected], there have been significant changes.
// We dealt with typical two (2) out of them:
// 1) The "mode:" directive got deprecated (seen right below);
// 2) Autoprefixer has been included so that we can lessen upgrade burden.
// mode: 'universal',
target: 'static',
components: true,
/*
** Headers of the page
*/
head: {
htmlAttrs: {
prefix: 'og: http://ogp.me/ns#',
},
meta: [
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'og:type', property: 'og:type', content: 'website' },
{
hid: 'og:url',
property: 'og:url',
content: 'https://stopcovid19.metro.tokyo.lg.jp',
},
{
hid: 'twitter:card',
name: 'twitter:card',
content: 'summary_large_image',
},
{
hid: 'twitter:site',
name: 'twitter:site',
content: '@tokyo_bousai',
},
{
hid: 'twitter:creator',
name: 'twitter:creator',
content: '@tokyo_bousai',
},
{
hid: 'fb:app_id',
property: 'fb:app_id',
content: '2879625188795443',
},
{
hid: 'note:card',
property: 'note:card',
content: 'summary_large_image',
},
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{ rel: 'apple-touch-icon', href: '/apple-touch-icon-precomposed.png' },
],
script: [
{
src: 'https://polyfill.io/v3/polyfill.min.js?features=IntersectionObserver',
defer: true,
},
],
},
/*
** Customize the progress-bar color
*/
loading: { color: '#fff' },
/*
** Global CSS
*/
css: ['@/assets/global.scss'],
/*
** Plugins to load before mounting the App
*/
plugins: [
{
src: '@/plugins/vue-chart.ts',
ssr: true,
},
{
src: '@/plugins/axe',
ssr: true,
},
{
src: '@/plugins/vue-scrollto',
ssr: true,
},
],
/*
** Nuxt.js dev-modules
*/
buildModules: [
'@nuxtjs/stylelint-module',
'@nuxtjs/vuetify',
[
'@nuxt/typescript-build',
{
typeCheck: {
async: true,
typescript: {
enable: true,
memoryLimit: 16384,
},
},
},
],
'@nuxtjs/google-analytics',
'@nuxtjs/gtm',
'nuxt-purgecss',
],
/*
** Nuxt.js modules
*/
modules: [
'@nuxtjs/pwa',
// Doc: https://github.com/nuxt-community/dotenv-module
['@nuxtjs/dotenv', { filename: `.env.${environment}` }],
['@nuxtjs/i18n', i18n],
'nuxt-svg-loader',
['vue-scrollto/nuxt', { duration: 1000, offset: -72 }],
'nuxt-webfontloader',
],
/*
** vuetify module configuration
** https://github.com/nuxt-community/vuetify-module
*/
vuetify: {
customVariables: ['@/assets/variables.scss'],
optionsPath: './plugins/vuetify.options.ts',
treeShake: true,
defaultAssets: false,
},
/*
* Webfontloader
* https://github.com/Developmint/nuxt-webfontloader
*/
webfontloader: {
google: {
families: ['Roboto:100,300,400,500,700,900&display=swap'],
},
},
googleAnalytics: {
id: process.env.GOOGLE_ANALYTICS_ID, // .env.production などに設定してください。
},
/*
** @nuxtjs/gtm config
*/
gtm: {
id: process.env.GTM_CONTAINER_ID,
pageTracking: true,
enabled: true,
},
/*
* nuxt-i18n による自動リダイレクトを停止したためコメントアウト
* @todo 「Cookieがあるときのみ、その言語にリダイレクトする」を実装する場合は復活させる
* 実装しない場合は以下の記述を完全に削除する
*/
/* optionalCookies: [
{
name: 'i18n_redirected',
label: 'i18n Redirection Cookie',
description:
'For automatically switching UI languages in accordance with locale preferences in the web browser configuration.',
cookies: ['i18n_redirected']
}
], */
build: {
filenames: {
chunk: ({ isDev }) => (isDev ? '[name].js' : '[id].[contenthash].js'),
},
babel: {
presets() {
return [
[
'@nuxt/babel-preset-app',
{
corejs: { version: '3.21' },
},
],
]
},
},
postcss: {
postcssOptions: {
plugins: {
autoprefixer: {
// Built-in since [email protected]
grid: 'autoplace',
},
},
},
},
extend(config) {
// default externals option is undefined
config.externals = [{ moment: 'moment' }]
},
// https://ja.nuxtjs.org/api/configuration-build/#hardsource
// hardSource: process.env.NODE_ENV === 'development'
},
purgeCSS: {
paths: [
'./node_modules/vuetify/dist/vuetify.js',
'./node_modules/vue-spinner/src/ScaleLoader.vue',
],
whitelist: ['DataCard', 'GraphLegend'],
whitelistPatterns: [/(col|row|v-window)/],
},
manifest: {
name: '東京都 新型コロナウイルス感染症対策サイト',
theme_color: '#00a040',
background_color: '#ffffff',
display: 'standalone',
Scope: '/',
start_url: '/',
splash_pages: null,
},
generate: {
fallback: true,
routes() {
const locales = ['en', 'zh-cn', 'zh-tw', 'ko', 'ja-basic']
const pages = cardData.map((v: Settings) => {
return v.path
})
const localizedPages = locales
.map((locale) => pages.map((page: string) => `/${locale}${page}`))
.reduce((a, b) => [...a, ...b], [])
return [...pages, ...localizedPages]
},
},
/*
* PWA - Workbox configuration
* https://pwa.nuxtjs.org/workbox
*/
pwa: {
workbox: {
enabled: false,
},
},
// /*
// ** hot read configuration for docker
// */
watchers: {
webpack: {
poll: true,
},
},
router: {
extendRoutes(routes) {
routes.forEach((route) => {
if (
route.name === 'index' ||
route.name === 'monitoring' ||
route.name === 'reference'
) {
route.meta = { tabs: true }
}
})
},
},
}
export default config