-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathvue.config.js
295 lines (282 loc) · 8.59 KB
/
vue.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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
const { resolve, parse } = require('path');
const _ = require('lodash');
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const ClosurePlugin = require('./plugins/ClosurePlugin');
const dataServer = require('./tools/serveData');
const { env } = process;
if (!env.VUE_APP_SHA) {
env.VUE_APP_SHA = env.VERCEL_GIT_COMMIT_SHA || env.CF_PAGES_COMMIT_SHA || env.COMMIT_REF || '';
}
env.VUE_APP_DIST_VERSION = `${require('dateformat')(new Date(), 'yyyymmddHHMMss')}${
env.VUE_APP_SHA ? `-${env.VUE_APP_SHA.substr(0, 8)}` : ''
}`;
if (env.npm_lifecycle_event === 'build' && !env.VUE_APP_DATA_BASE_URL) {
throw new Error('VUE_APP_DATA_BASE_URL env is not provided');
}
if (env.npm_lifecycle_event === 'serve' && !env.VUE_APP_DATA_BASE_URL) {
dataServer.start();
}
const runtimeCachingRule = (reg, handler = 'CacheFirst') => ({
urlPattern: reg,
handler,
options: {
cacheableResponse: {
statuses: [200],
},
},
});
const runtimeCachingRuleByURL = ({ protocol, host, pathname }, handler = 'CacheFirst') =>
runtimeCachingRule(
new RegExp(`^${protocol}\\/\\/${host.replace(/\./g, '\\.')}${pathname.replace(/\//g, '\\/')}`),
handler,
);
const singleVendorSet = new Set(['vue', 'vue-router', 'vue-i18n', 'pinia', 'lodash', 'mdui']);
const vendorMap = {
'vue-demi': 'pinia',
'lodash.combinations': 'lodash',
};
const config = {
publicPath: '',
assetsDir: 'assets',
productionSourceMap: true,
configureWebpack: {
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: env.NODE_ENV === 'production' ? 'static' : 'server',
openAnalyzer: false,
reportFilename: 'bundle-report.html',
}),
],
performance: {
hints: false,
},
optimization: {
splitChunks: {
cacheGroups: {
vendors: {
test: /[\\/]node_modules[\\/]/,
name: module => {
const paths = module.context.match(/[\\/]node_modules[\\/](.*)/)[1].split(/[\\/]/);
const name = paths[0].startsWith('@') ? `${paths[0]}/${paths[1]}` : paths[0];
if (singleVendorSet.has(name)) return `vendors.${name}`;
if (name in vendorMap) return `vendors.${vendorMap[name]}`;
if (/\bvue2?-/.test(name)) return 'vendors.vue.addons';
return 'vendors';
},
chunks: 'all',
enforce: true,
},
data: {
test: /[\\/]src[\\/]data[\\/].+\.json$/,
name(module, chunks, cacheGroupKey) {
let { name } = parse(module.identifier());
if (/^item(Order)?|level$/.test(name)) name = 'common';
return [cacheGroupKey, name].join('/');
},
chunks: 'all',
enforce: true,
},
i18n: {
test: /[\\/]src[\\/]locales[\\/].+\.json$/,
name(module, chunks, cacheGroupKey) {
const { dir } = parse(module.identifier());
return [cacheGroupKey, _.last(dir.split(/[\\/]/))].join('/');
},
chunks: 'all',
enforce: true,
},
},
},
},
resolve: { alias: {} },
},
chainWebpack: config => {
config.plugins.delete('preload').delete('prefetch');
},
pwa: {
workboxPluginMode: 'GenerateSW',
workboxOptions: {
importWorkboxFrom: 'local',
skipWaiting: false,
exclude: [
/^\./,
'manifest.json',
/\.(map|zip|txt)$/,
/^assets\/img\/other\//,
/^assets\/icons\/shortcut-/,
/.*\.worker.js$/,
],
runtimeCaching: [
runtimeCachingRule(/assets\/img\/other\//),
runtimeCachingRule(/assets\/js\/.*\.worker.js/),
runtimeCachingRuleByURL(
new URL('https://avatars.githubusercontent.com'),
'StaleWhileRevalidate',
),
],
},
name: '明日方舟工具箱',
themeColor: '#212121',
msTileColor: '#212121',
appleMobileWebAppStatusBarStyle: 'black',
iconPaths: {
favicon32: 'assets/icons/texas-favicon-32x32-v2.png',
favicon16: 'assets/icons/texas-favicon-16x16-v2.png',
appleTouchIcon: 'assets/icons/texas-apple-icon-180x180-v2.png',
msTileImage: 'assets/icons/texas-msapplication-icon-144x144-v2.png',
maskIcon: 'assets/icons/texas-mask-icon-16x16-v2.svg',
},
manifestOptions: {
name: '明日方舟工具箱',
short_name: '方舟工具箱',
lang: 'zh',
start_url: '/',
background_color: '#212121',
description:
'明日方舟工具箱,全服支持,宗旨是简洁美观且对移动设备友好。目前功能包括:公开招募计算、精英材料计算、刷图规划、仓库材料识别导入、干员升级计算、基建技能筛选。',
categories: ['tools'],
shortcuts: [
{
name: '公开招募计算',
short_name: '公开招募',
url: '/#/hr',
icons: [
{
src: 'assets/icons/shortcut-hr-192x192.png',
sizes: '192x192',
type: 'image/png',
purpose: 'any',
},
],
},
{
name: '精英材料计算',
short_name: '精英材料',
url: '/#/material',
icons: [
{
src: 'assets/icons/shortcut-material-192x192.png',
sizes: '192x192',
type: 'image/png',
purpose: 'any',
},
],
},
{
name: '干员升级计算',
short_name: '干员升级',
url: '/#/level',
icons: [
{
src: 'assets/icons/shortcut-level-192x192.png',
sizes: '192x192',
type: 'image/png',
purpose: 'any',
},
],
},
{
name: '基建技能筛选',
short_name: '基建技能',
url: '/#/riic',
icons: [
{
src: 'assets/icons/shortcut-riic-192x192.png',
sizes: '192x192',
type: 'image/png',
purpose: 'any',
},
],
},
],
icons: [
{
src: 'assets/icons/texas-icon-192x192-v2.png',
sizes: '192x192',
type: 'image/png',
},
{
src: 'assets/icons/texas-icon-192x192-maskable-v2.png',
sizes: '192x192',
type: 'image/png',
purpose: 'maskable',
},
{
src: 'assets/icons/texas-icon-512x512-v2.png',
sizes: '512x512',
type: 'image/png',
},
{
src: 'assets/icons/texas-icon-512x512-maskable-v2.png',
sizes: '512x512',
type: 'image/png',
purpose: 'maskable',
},
],
screenshots: Array(6)
.fill()
.map((v, i) => ({
src: `https://statics.arkntools.app/arknights-toolbox/screenshots/${i}.png`,
sizes: '1380x845',
type: 'image/png',
})),
},
},
pluginOptions: {
i18n: {
locale: 'cn',
fallbackLocale: 'cn',
localeDir: 'locales',
enableInSFC: false,
},
},
devServer: {
disableHostCheck: true,
proxy: {
'/data': {
target: 'http://127.0.0.1',
pathRewrite: { '^/data': '' },
router: () => `http://127.0.0.1:${dataServer.port}`,
onProxyRes: (res, req) => {
if (req.url.endsWith('.json')) res.headers['Cache-Control'] = 'no-cache';
},
},
},
},
};
if (env.DR_DEV) {
config.configureWebpack.resolve.alias['@arkntools/depot-recognition'] = resolve(env.DR_DEV);
}
const runtimeCachingURLs = [
'https://statics.arkntools.app',
'https://i.loli.net',
'https://fonts.loli.net',
'https://gstatic.loli.net',
'https://fastly.jsdelivr.net',
'https://js-models.bj.bcebos.com',
].map(url => new URL(url));
if (env.VUE_APP_DATA_BASE_URL) {
console.log(`VUE_APP_DATA_BASE_URL=${env.VUE_APP_DATA_BASE_URL}`);
const url = new URL(`${env.VUE_APP_DATA_BASE_URL}`);
url.pathname = '/img/';
runtimeCachingURLs.push(url);
}
if (env.NODE_ENV === 'production') {
if (env.VUE_APP_CDN) {
config.publicPath = env.VUE_APP_CDN;
config.crossorigin = 'anonymous';
const CDN_URL = new URL(env.VUE_APP_CDN);
if (
!runtimeCachingURLs.some(
({ protocol, host }) => protocol === CDN_URL.protocol && host === CDN_URL.host,
)
) {
runtimeCachingURLs.push(CDN_URL);
}
}
config.configureWebpack.plugins.push(new ClosurePlugin());
}
config.pwa.workboxOptions.runtimeCaching.push(
...runtimeCachingURLs.map(url => runtimeCachingRuleByURL(url)),
);
module.exports = config;