This repository was archived by the owner on Apr 10, 2023. It is now read-only.
forked from arkntools/arknights-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
211 lines (202 loc) · 6.3 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
const { resolve, parse } = require('path');
const _ = require('lodash');
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const ClosurePlugin = require('./plugins/ClosurePlugin');
const PreventVercelBuildingPlugin = require('./plugins/PreventVercelBuildingPlugin');
if (process.env.HOME === '/vercel') process.env.VUE_APP_VERCEL = '1';
process.env.VUE_APP_DIST_VERSION = `${require('dateformat')(new Date(), 'yyyymmddHHMMss')}${
process.env.VUE_APP_SHA ? `-${process.env.VUE_APP_SHA.substr(0, 8)}` : ''
}`;
const runtimeCachingRule = (reg, handler = 'CacheFirst') => ({
urlPattern: reg,
handler,
options: {
cacheableResponse: {
statuses: [200],
},
},
});
const runtimeCachingRuleByURL = ({ protocol, host }, handler = 'CacheFirst') =>
runtimeCachingRule(new RegExp(`^${protocol}\\/\\/${host.replace(/\./g, '\\.')}\\/`), handler);
const config = {
publicPath: '',
assetsDir: 'assets',
productionSourceMap: false,
configureWebpack: {
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: process.env.NODE_ENV === 'production' ? 'static' : 'server',
openAnalyzer: false,
reportFilename: 'bundle-report.html',
}),
],
performance: {
hints: false,
},
optimization: {
splitChunks: {
cacheGroups: {
vendors: {
test: /[\\/]node_modules[\\/]/,
name: '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) {
let { dir, name } = parse(module.identifier());
dir = _.last(dir.split(/[\\/]/));
if (/^item|material|tag$/.test(name)) name = 'common';
else if (name === '_') name = 'main';
return [cacheGroupKey, dir, name].join('/');
},
chunks: 'all',
enforce: true,
},
},
},
},
externals: {
lodash: '_',
vue: 'Vue',
'vue-router': 'VueRouter',
mdui: 'mdui',
'vue-i18n': 'VueI18n',
'@johmun/vue-tags-input': 'vueTagsInput',
'javascript-lp-solver': 'solver',
md5: 'MD5',
comlink: 'Comlink',
'js-base64': 'Base64',
'vue-gtag': 'VueGtag',
},
resolve: { alias: {} },
},
chainWebpack: config => {
config.plugins.delete('preload').delete('prefetch');
// config.module
// .rule('i18n')
// .resourceQuery(/blockType=i18n/)
// .type('javascript/auto')
// .use('i18n')
// .loader('@intlify/vue-i18n-loader');
},
pwa: {
workboxPluginMode: 'GenerateSW',
workboxOptions: {
skipWaiting: true,
exclude: [
'manifest.json',
/\.(map|zip|txt)$/,
/^assets\/img\/(avatar|material|item|other)\//,
],
runtimeCaching: [
runtimeCachingRule(/assets\/img\/(avatar|material|item)\//),
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-Hans',
background_color: '#212121',
description:
'明日方舟工具箱,全服支持,宗旨是简洁美观且对移动设备友好。目前功能包括:公开招募计算、精英材料计算、刷图规划、干员升级计算、基建技能筛选、仓库素材导入。',
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',
},
],
},
},
pluginOptions: {
i18n: {
locale: 'cn',
fallbackLocale: 'cn',
localeDir: 'locales',
enableInSFC: false,
},
},
devServer: {
disableHostCheck: true,
},
};
if (process.env.DR_DEV) {
config.configureWebpack.resolve.alias['@arkntools/depot-recognition'] = resolve(
__dirname,
process.env.DR_DEV,
);
}
const runtimeCachingURLs = [
'https://i.loli.net',
'https://fonts.googleapis.cnpmjs.org',
'https://fonts.gstatic.cnpmjs.org',
'https://cdn.jsdelivr.net',
].map(url => new URL(url));
if (process.env.NODE_ENV === 'production') {
const { USE_CDN, VUE_APP_CDN } = process.env;
if (USE_CDN === 'true') {
if (!VUE_APP_CDN) throw new Error('VUE_APP_CDN env is not set');
config.publicPath = VUE_APP_CDN;
config.crossorigin = 'anonymous';
const CDN_URL = new URL(VUE_APP_CDN);
if (
!runtimeCachingURLs.some(
({ protocol, host }) => protocol === CDN_URL.protocol && host === CDN_URL.host,
)
) {
runtimeCachingURLs.push(CDN_URL);
}
}
if (process.env.HOME !== '/vercel') {
config.configureWebpack.plugins.push(new PreventVercelBuildingPlugin());
}
config.configureWebpack.plugins.push(new ClosurePlugin());
}
config.pwa.workboxOptions.runtimeCaching.push(
...runtimeCachingURLs.map(url => runtimeCachingRuleByURL(url)),
);
module.exports = config;