mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-11-10 10:38:23 +08:00
Merge pull request #95 from lovae/fix/base-url
fix(vite.config): fix base url
This commit is contained in:
commit
dda2f6e144
|
@ -1 +1,3 @@
|
|||
VITE_SOME_KEY=456
|
||||
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,30 +6,35 @@ import svgLoader from 'vite-svg-loader';
|
|||
|
||||
import path from 'path';
|
||||
|
||||
const CWD = process.cwd();
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
base: './',
|
||||
resolve: {
|
||||
alias: {
|
||||
'@': path.resolve(__dirname, './src'),
|
||||
export default ({ mode }: ConfigEnv): UserConfig => {
|
||||
const { VITE_BASE_URL } = loadEnv(mode, CWD);
|
||||
return {
|
||||
base: VITE_BASE_URL,
|
||||
resolve: {
|
||||
alias: {
|
||||
'@': path.resolve(__dirname, './src'),
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
plugins: [
|
||||
createVuePlugin(),
|
||||
vueJsx(),
|
||||
viteMockServe({
|
||||
mockPath: 'mock',
|
||||
localEnabled: true,
|
||||
}),
|
||||
svgLoader(),
|
||||
],
|
||||
plugins: [
|
||||
createVuePlugin(),
|
||||
vueJsx(),
|
||||
viteMockServe({
|
||||
mockPath: 'mock',
|
||||
localEnabled: true,
|
||||
}),
|
||||
svgLoader(),
|
||||
],
|
||||
|
||||
server: {
|
||||
port: 3002,
|
||||
host: '0.0.0.0',
|
||||
proxy: {
|
||||
'/api': 'http://127.0.0.1:3000/',
|
||||
server: {
|
||||
port: 3002,
|
||||
host: '0.0.0.0',
|
||||
proxy: {
|
||||
'/api': 'http://127.0.0.1:3000/',
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user