21 lines
426 B
TypeScript
21 lines
426 B
TypeScript
import { defineConfig } from 'vite';
|
|
import vue from '@vitejs/plugin-vue';
|
|
import path from 'path';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
resolve: {
|
|
alias: {
|
|
// 这里就是需要配置resolve里的别名
|
|
'@': path.resolve(__dirname, './src'), // path记得引入
|
|
},
|
|
},
|
|
server: {
|
|
host: true,
|
|
port: 4002,
|
|
// 开启跨域
|
|
cors: true,
|
|
},
|
|
});
|