-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathnuxt.config.js
279 lines (249 loc) · 9.14 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
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
276
277
278
279
import dayjs from "dayjs"
const BUILD_VERSION = dayjs().format("YYYY-MM-DD HH:mm:ss")
const PRODUCTION_P = process.env.NODE_ENV === "production"
const DEVELOPMENT_P = !PRODUCTION_P
const SITE_DESC = "将棋の棋譜再生・対局・盤面編集等が可能なVue.js用将棋盤コンポーネント"
export default {
// debug: true,
// https://ja.nuxtjs.org/guides/configuration-glossary/configuration-ssr/
//
// mode は DEPRECATED なので下に置き換え
//
// mode: "spa" → ssr: false
// mode: "universal" → ssr: true
//
ssr: false,
/*
** Nuxt target
** See https://nuxtjs.org/api/configuration-target
*/
// target: "server",
target: "static",
router: {
base: process.env.NODE_ENV === "production" ? "/shogi-player/" : "/",
// https://ja.nuxtjs.org/api/configuration-router/#trailingslash
// trailingSlash: false,
},
generate: {
subFolders: false, // false: xxx.html true: xxx/index.html
dir: "docs", // for github pages
},
/*
** Headers of the page
*/
head: {
title: process.env.APP_NAME,
titleTemplate: `%s - ${process.env.APP_NAME}`,
// titleTemplate(title) {
// return (title ? `${title} | ` : "") + process.env.APP_NAME
// },
htmlAttrs: {
lang: "ja",
prefix: "og: http://ogp.me/ns#",
class: `NODE_ENV-${process.env.NODE_ENV} STAGE-${process.env.STAGE}`,
},
meta: [
// https://ja.nuxtjs.org/faq/duplicated-meta-tags/
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{ hid: "description", name: "description", content: SITE_DESC },
////////////////////////////////////////////////////////////////////////////////
{ hid: "og:site_name", property: "og:site_name", content: process.env.APP_NAME },
{ hid: "og:type", property: "og:type", content: "website" },
{ hid: "og:url", property: "og:url", content: process.env.MY_SITE_URL }, // これいるのか?
{ hid: "og:title", property: "og:title", content: process.env.APP_NAME },
{ hid: "og:description", property: "og:description", content: SITE_DESC },
{ hid: "og:image", property: "og:image", content: process.env.MY_NUXT_URL + "/ogp/application.png" },
{ hid: "twitter:card", property: "twitter:card", content: "summary_large_image" }, // summary or summary_large_image
{ hid: "twitter:site", property: "twitter:site", content: "@sgkinakomochi" }, // これいるのか?
{ hid: "twitter:creator", property: "twitter:creator", content: "@sgkinakomochi" }, // これいるのか?
],
link: [
{ hid: "icon", rel: "icon", type: "image/x-icon", href: "/favicon.ico" },
{ hid: "apple-touch-icon", rel: "apple-touch-icon", href: "/apple-touch-icon.png" },
],
// base: { href: "http://0.0.0.0:3000" },
},
/*
** Customize the progress-bar color
*/
// loading: { color: "hsl(348 100% 61%)" }, // bulma red color
// loading: { color: "hsl(48 100% 67%)" }, // bulma yellow color
loading: { color: "hsl(0 0% 21%)" }, // bulma grey-daker color
/*
** Global CSS
*/
css: [
"./assets/sass/application.sass",
],
styleResources: {
sass: [
"./assets/sass/styleResources.scss", // sass の項目に scss のファイルを与えないと読み込まれないのは謎
],
// scss: [
// // "~assets/vars/*.scss",
// // "~assets/abstracts/_mixins.scss"
// ]
},
/*
** Plugins to load before mounting the App
*/
plugins: [
// client only
"~/plugins/mixin_mod.client.js",
// 両方
"~/plugins/universal.js",
],
/*
** Auto import components
** See https://nuxtjs.org/api/configuration-components
*/
// components: true,
components: [
{ path: "~/components", extensions: ["vue"], pathPrefix: false, },
],
/*
** Nuxt.js dev-modules
*/
buildModules: [
],
/*
** Nuxt.js modules
*/
modules: [
// Doc: https://buefy.github.io/#/documentation
// ~/src/shogi-extend/nuxt_side/node_modules/nuxt-buefy/lib/module.js
[
"nuxt-buefy",
{
// ~/src/shogi-extend/nuxt_side/node_modules/nuxt-buefy/lib/module.js
css: false,
materialDesignIconsHRef: "https://cdn.jsdelivr.net/npm/@mdi/font/css/materialdesignicons.min.css",
async: false, // デフォルトの true のままだとアイコンがチラつく
// ~/src/shogi-extend/nuxt_side/node_modules/buefy/src/utils/config.js
defaultTooltipType: "is-dark",
defaultTooltipDelay: 20,
}
],
// https://github.com/rigor789/vue-scrollTo
[
"vue-scrollto/nuxt",
{
duration: 100,
// easing: "ease",
// offset: 0,
// force: true,
// cancelable: true,
// onStart: false,
// onDone: false,
// onCancel: false,
// x: false,
// y: true,
},
],
// Doc: https://axios.nuxtjs.org/usage
// "@nuxtjs/axios",
// "@nuxtjs/proxy",
"@nuxtjs/style-resources",
],
/*
** Axios module configuration
** See https://axios.nuxtjs.org/options
*/
axios: {
},
proxy: {},
/*
** Build configuration
*/
// オーディオファイルをロードするように Webpack の設定を拡張するには?
// https://ja.nuxtjs.org/faq/webpack-audio-files
build: {
hardSource: DEVELOPMENT_P,
// https://ja.nuxtjs.org/api/configuration-build#extractcss
extractCSS: process.env.NODE_ENV === "production", // htmlファイルにスタイルが吐かれるのを防ぐ。trueにするとHMRが効かないので注意
// TODO: 意味を調べる
optimization: {
splitChunks: {
cacheGroups: {
styles: {
name: "styles",
test: /\.(scss|sass|css|vue)$/,
chunks: "all",
enforce: true,
},
},
},
},
// https://ja.nuxtjs.org/api/configuration-build/#transpile
// transpile: ["shogi-player"], // 外側にあるファイルは import 文を require に変換しないと node でパースできない
// オーディオファイルをロードするように Webpack の設定を拡張するには?
// https://ja.nuxtjs.org/faq/webpack-audio-files/
//
// <audio :src="require("@/assets/water.mp3")" controls></audio>
// <audio src="@/assets/water.mp3" controls></audio>
//
loaders: {
vue: {
transformAssetUrls: {
audio: "src",
},
},
// https://www.suzunatsu.com/post/node-sass-to-dart-sass/
sass: {
// implementation: require('node-sass'),
implementation: require('sass'),
},
scss: {
// implementation: require('node-sass'),
implementation: require('sass'),
},
},
extend (config, ctx) {
config.module.rules.push({
test: /\.(ogg|mp3|wav|mpe?g)$/i,
loader: "file-loader",
options: {
name: "[path][name].[ext]",
// require("path/to/xxx.wav") が { default: "/_nuxt/blob/xxx.wav", __esModule: true, ...} になってしまう対策
// https://github.com/webpack-contrib/file-loader#esmodule
// false にすると単にパス "/_nuxt/blob/xxx.wav" になる
esModule: false,
},
})
config.module.rules.push({
test: /\.(txt|md|kif|ki2|csa|sfen)$/,
loader: "raw-loader",
exclude: /(node_modules)/,
})
},
},
// https://nuxtjs.org/guide/runtime-config
// 空文字列は空で設定したのではなく XXX: process.env.XXX の意味(わかりにくい!)
// またビルドしてもこの情報はそこに含まれてないので注意
// デプロイするときには .nuxt だけでなく .env* も転送しないといけない
// このせいで本番環境なのに開発環境の設定で運用していて不可解な現象が起きていた
publicRuntimeConfig: {
CSR_BUILD_VERSION: BUILD_VERSION,
MY_SITE_URL: "",
MY_NUXT_URL: "",
STAGE: "",
APP_NAME: "",
},
// SSR側での定義で publicRuntimeConfig を上書きする
// 意味はよくわかっていない
privateRuntimeConfig: {
},
// 面倒な process.env.XXX の再定義
// ・ここで定義すると .vue 側で process.env.XXX で参照できる
// ・しかし process.env.XXX は文字列として展開されるので非常に扱いづらい
// ・それを忘れて process.env がハッシュだと勘違いしていつもはまる
// ・だから publicRuntimeConfig を使う方がよい
// ・ちなみに NUXT_ENV_ プレフィクスをつけた環境変数は自動的にここで定義したことになる
// ・しかしプレフィクスはついたままなのでこれまた使いにくい
// ・なので publicRuntimeConfig を使う方がよい
env: {
// FOO: process.env.FOO,
ENV_BUILD_VERSION: BUILD_VERSION,
},
}