Make chunks named

このコミットが含まれているのは:
Tusooa Zhu 2022-09-20 23:13:07 -04:00
コミット a758e18dce
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 7B467EDE43A08224
4個のファイルの変更6行の追加3行の削除

ファイルの表示

@ -1,5 +1,5 @@
{
"presets": ["@babel/preset-env"],
"plugins": ["@babel/plugin-transform-runtime", "lodash", "@vue/babel-plugin-jsx"],
"comments": false
"comments": true
}

ファイルの表示

@ -24,7 +24,8 @@ module.exports = {
output: {
path: config.build.assetsRoot,
publicPath: process.env.NODE_ENV === 'production' ? config.build.assetsPublicPath : config.dev.assetsPublicPath,
filename: '[name].js'
filename: '[name].js',
chunkFilename: '[name].js'
},
optimization: {
splitChunks: {

ファイルの表示

@ -14,6 +14,7 @@ const hasLanguageFile = (code) => languages.includes(code)
const loadLanguageFile = (code) => {
return import(
/* webpackInclude: /\.json$/ */
/* webpackChunkName: "i18n/[request]" */
`./${langCodeToJsonName(code)}.json`
)
}

ファイルの表示

@ -133,6 +133,7 @@ const defaultState = {
const loadAnnotations = (lang) => {
return import(
/* webpackChunkName: "emoji-annotations/[request]" */
`@kazvmoe-infra/unicode-emoji-json/annotations/${langCodeToCldrName(lang)}.json`
)
.then(k => k.default)
@ -234,7 +235,7 @@ const instance = {
},
async getStaticEmoji ({ commit }) {
try {
const values = (await import('../../static/emoji.json')).default
const values = (await import(/* webpackChunkName: 'emoji' */ '../../static/emoji.json')).default
const emoji = Object.keys(values).reduce((res, groupId) => {
res[groupId] = values[groupId].map(e => ({