mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-12-23 02:26:34 +08:00
4f77a18b2a
* chore: globalconfig edit * chore: mv stylelint-config-prettier to devdep * feat: add vscode config * fix: lint fix * feat: update base url
35 lines
656 B
TypeScript
35 lines
656 B
TypeScript
import { defineConfig } from 'vite';
|
|
import { viteMockServe } from 'vite-plugin-mock';
|
|
import createVuePlugin from '@vitejs/plugin-vue';
|
|
import vueJsx from '@vitejs/plugin-vue-jsx';
|
|
import svgLoader from 'vite-svg-loader';
|
|
|
|
import path from 'path';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
base: './',
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
},
|
|
},
|
|
|
|
plugins: [
|
|
createVuePlugin(),
|
|
vueJsx(),
|
|
viteMockServe({
|
|
mockPath: 'mock',
|
|
localEnabled: true,
|
|
}),
|
|
svgLoader(),
|
|
],
|
|
|
|
server: {
|
|
port: 3002,
|
|
proxy: {
|
|
'/api': 'http://127.0.0.1:3000/',
|
|
},
|
|
},
|
|
});
|