micro-app/packages/icpx-crowncad/vite.config.ts
2023-05-30 19:27:03 +08:00

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,
},
});