bug fixed: 紧急修复构建后资源请求404问题

This commit is contained in:
ray_wuhao 2023-07-05 17:35:30 +08:00
parent b3ceff8dfe
commit 232f1efeb9
4 changed files with 1 additions and 26 deletions

17
cfg.ts
View File

@ -49,23 +49,6 @@ import { PRE_LOADING_CONFIG, SIDE_BAR_LOGO } from './src/appConfig/appConfig'
import type { AppConfigExport } from '@/types/modules/cfg'
const config: AppConfigExport = {
/** 自定义配置构建(打包)输出 chunk */
chunkSplitVendor: {
// `vue` `vue-router` `pinia` 会被打包到一个名为`vue-vendor`的 chunk 里面(包括它们的一些依赖)
'vue-vendor': ['vue', 'vue-router', 'pinia'],
// 源码中 src/utils 目录的代码都会打包进 `utils-vendor` 这个 chunk 中
'utils-vendor': [/src\/utils/, 'lodash-es'],
/**
*
* src/locales `locales-vendor` chunk
* , lang
*
* Tip
* @intlify/unplugin-vue-i18n/vite , json js
*/
'locales-vendor': [/src\/locales/],
'css-vendor': [/src\/styles/],
},
/** 公共基础路径配置, 如果为空则会默认以 '/' 填充 */
base: '/ray-template/',
/** 配置首屏加载信息 */

View File

@ -78,7 +78,6 @@
"unplugin-auto-import": "^0.11.0",
"unplugin-vue-components": "^0.22.0",
"vite": "^4.3.9",
"vite-plugin-chunk-split": "^0.4.7",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-ejs": "^1.6.4",
"vite-plugin-eslint": "^1.8.1",

View File

@ -49,7 +49,6 @@ export interface Config {
preloadingConfig?: PreloadingConfig
base?: string
appPrimaryColor?: AppPrimaryColor
chunkSplitVendor: Record<string, (string | RegExp)[]>
}
/**

View File

@ -16,7 +16,6 @@ import vitePluginImp from 'vite-plugin-imp' // 按需打包工具
import { visualizer } from 'rollup-plugin-visualizer' // 打包体积分析工具
import viteCompression from 'vite-plugin-compression' // 压缩打包
import { ViteEjsPlugin as viteEjsPlugin } from 'vite-plugin-ejs'
import { chunkSplitPlugin as viteChunkSplitPlugin } from 'vite-plugin-chunk-split'
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers' // 模板自动导入组件并且按需打包
@ -35,7 +34,6 @@ const {
appPrimaryColor,
preloadingConfig,
base,
chunkSplitVendor,
} = config
/**
@ -70,10 +68,6 @@ export default defineConfig(async ({ mode }) => {
plugins: [
vue({ reactivityTransform: true }),
viteVueJSX(),
viteChunkSplitPlugin({
strategy: 'default',
customSplitting: chunkSplitVendor,
}),
title,
viteInspect(), // 仅适用于开发模式(检查 `Vite` 插件的中间状态)
viteVeI18nPlugin(),
@ -158,7 +152,7 @@ export default defineConfig(async ({ mode }) => {
return id
.toString()
.split('node_modules/')[1]
.split('/')[0]
.split('/')[1]
.toString()
}
},