mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-11-10 00:35:03 +08:00
be4cf0818a
* fix: 顶部菜单刷新高亮失效 * chore: fix lint error
52 lines
1.1 KiB
TypeScript
52 lines
1.1 KiB
TypeScript
import path from 'path';
|
|
import vue from '@vitejs/plugin-vue';
|
|
import vueJsx from '@vitejs/plugin-vue-jsx';
|
|
import { ConfigEnv, loadEnv, UserConfig } from 'vite';
|
|
import { viteMockServe } from 'vite-plugin-mock';
|
|
import svgLoader from 'vite-svg-loader';
|
|
|
|
const CWD = process.cwd();
|
|
|
|
// https://vitejs.dev/config/
|
|
export default ({ mode }: ConfigEnv): UserConfig => {
|
|
const { VITE_BASE_URL, VITE_API_URL_PREFIX } = loadEnv(mode, CWD);
|
|
return {
|
|
base: VITE_BASE_URL,
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
},
|
|
},
|
|
|
|
css: {
|
|
preprocessorOptions: {
|
|
less: {
|
|
modifyVars: {
|
|
hack: `true; @import (reference) "${path.resolve('src/style/variables.less')}";`,
|
|
},
|
|
math: 'strict',
|
|
javascriptEnabled: true,
|
|
},
|
|
},
|
|
},
|
|
|
|
plugins: [
|
|
vue(),
|
|
vueJsx(),
|
|
viteMockServe({
|
|
mockPath: 'mock',
|
|
enable: true,
|
|
}),
|
|
svgLoader(),
|
|
],
|
|
|
|
server: {
|
|
port: 3002,
|
|
host: '0.0.0.0',
|
|
proxy: {
|
|
[VITE_API_URL_PREFIX]: 'http://127.0.0.1:3000/',
|
|
},
|
|
},
|
|
};
|
|
};
|