mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-12-23 01:56:33 +08:00
86f73de893
* fix: githubactions config * fix: update build env * fix: remove cache Co-authored-by: ivringpeng <pengyue970725@gmail.com>
31 lines
582 B
TypeScript
31 lines
582 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({
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
},
|
|
},
|
|
|
|
plugins: [
|
|
createVuePlugin(),
|
|
vueJsx(),
|
|
viteMockServe({
|
|
mockPath: 'mock',
|
|
localEnabled: true,
|
|
}),
|
|
svgLoader(),
|
|
],
|
|
|
|
server: {
|
|
port: 3002,
|
|
},
|
|
});
|