🎨路由模式改为hash模式

This commit is contained in:
coward 2024-08-21 08:54:33 +08:00
parent cb7d1adc95
commit 53e89abfd8
3 changed files with 21 additions and 1 deletions

View File

@ -1,6 +1,8 @@
# 资源公共路径,需要以 /开头和结尾
VITE_PUBLIC_PATH = '/'
VITE_USE_HASH = true
# 是否启用MOCK
VITE_USE_MOCK = true

View File

@ -1,5 +1,7 @@
# 资源公共路径,需要以 /开头和结尾
VITE_PUBLIC_PATH = '/'
VITE_PUBLIC_PATH = '/web'
VITE_USE_HASH = true
# 是否启用MOCK
VITE_USE_MOCK = false

View File

@ -4,6 +4,9 @@ import { convertEnv, getSrcPath, getRootPath } from './build/utils'
import { createVitePlugins } from './build/plugin'
import { OUTPUT_DIR, PROXY_CONFIG } from './build/constant'
const INVALID_CHAR_REGEX = /[\x00-\x1F\x7F<>*#"{}|^[\]`;?:&=+$,]/g;
const DRIVE_LETTER_REGEX = /^[a-z]:/i;
export default defineConfig(({ command, mode }) => {
const srcPath = getSrcPath()
const rootPath = getRootPath()
@ -38,6 +41,19 @@ export default defineConfig(({ command, mode }) => {
outDir: OUTPUT_DIR || 'dist',
reportCompressedSize: false, // 启用/禁用 gzip 压缩大小报告
chunkSizeWarningLimit: 1024, // chunk 大小警告的限制单位kb
rollupOptions: {
output: {
sanitizeFileName(name) {
const match = DRIVE_LETTER_REGEX.exec(name);
const driveLetter = match ? match[0] : '';
// substr 是被淘汰語法,因此要改 slice
return (
driveLetter +
name.slice(driveLetter.length).replace(INVALID_CHAR_REGEX, "")
);
}
}
}
},
}
})