37 lines
930 B
JavaScript
37 lines
930 B
JavaScript
|
import { defineConfig } from "vite";
|
||
|
|
||
|
import { fileURLToPath, URL } from 'url'
|
||
|
import vue from "@vitejs/plugin-vue";
|
||
|
import AutoImport from "unplugin-auto-import/vite";
|
||
|
import Components from "unplugin-vue-components/vite";
|
||
|
// import { ElementPlusResolver } from "unplugin-vue-components/resolvers";
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
vue(),
|
||
|
AutoImport({
|
||
|
// resolvers: [ElementPlusResolver()],
|
||
|
}),
|
||
|
Components({
|
||
|
// resolvers: [ElementPlusResolver()],
|
||
|
}),
|
||
|
],
|
||
|
resolve: {
|
||
|
extensions: ['.js', '.vue'],
|
||
|
alias: {
|
||
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
||
|
}
|
||
|
},
|
||
|
server: {
|
||
|
host: '0.0.0.0', // 解决“vite use `--host` to expose”-- 0.0.0.0 将监听所有地址
|
||
|
proxy: {
|
||
|
'/api': {
|
||
|
target: 'https://fywz.btdit.cn/',
|
||
|
changeOrigin: true,
|
||
|
// ws: true,// 开启webSocket
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
});
|