mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-12-22 22:31:31 +08:00
fix(vite.config): fix base url
prod env path error when use dynamic routing
This commit is contained in:
parent
0f182d8315
commit
3cf9a1a53a
|
@ -1 +1,3 @@
|
|||
VITE_SOME_KEY=456
|
||||
# 打包路径
|
||||
VITE_BASE_URL = ./
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { defineConfig } from 'vite';
|
||||
import { ConfigEnv, UserConfig, loadEnv } from 'vite';
|
||||
import { viteMockServe } from 'vite-plugin-mock';
|
||||
import createVuePlugin from '@vitejs/plugin-vue';
|
||||
import vueJsx from '@vitejs/plugin-vue-jsx';
|
||||
|
@ -6,9 +6,13 @@ import svgLoader from 'vite-svg-loader';
|
|||
|
||||
import path from 'path';
|
||||
|
||||
const CWD = process.cwd();
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
base: '/starter/vue-next/',
|
||||
export default ({ mode }: ConfigEnv): UserConfig => {
|
||||
const { VITE_BASE_URL } = loadEnv(mode, CWD);
|
||||
return {
|
||||
base: VITE_BASE_URL,
|
||||
resolve: {
|
||||
alias: {
|
||||
'@': path.resolve(__dirname, './src'),
|
||||
|
@ -32,4 +36,5 @@ export default defineConfig({
|
|||
'/api': 'http://127.0.0.1:3000/',
|
||||
},
|
||||
},
|
||||
});
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user