60 lines
1.4 KiB
JavaScript
60 lines
1.4 KiB
JavaScript
import { fileURLToPath, URL } from 'node:url'
|
|
|
|
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// elementPlus按需导入
|
|
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({
|
|
build: {
|
|
outDir: 'portal',
|
|
chunkSizeWarningLimit: 1600
|
|
},
|
|
base: '/portal',
|
|
plugins: [
|
|
vue(),
|
|
// ...
|
|
AutoImport({
|
|
resolvers: [ElementPlusResolver()],
|
|
}),
|
|
Components({
|
|
resolvers: [
|
|
// 1. 配置elementPlus采用sass样式配色系统
|
|
ElementPlusResolver({ importStyle: "sass" }),
|
|
],
|
|
}),
|
|
],
|
|
resolve: {
|
|
// 实际的路径转换 @ -> src
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
|
}
|
|
},
|
|
css: {
|
|
preprocessorOptions: {
|
|
scss: {
|
|
// 2. 自动导入定制化样式文件进行样式覆盖
|
|
additionalData: `
|
|
@use "@/styles/element/index.scss" as *;
|
|
@use "@/styles/var.scss" as *;
|
|
`,
|
|
}
|
|
}
|
|
},
|
|
server: {
|
|
host: '0.0.0.0',
|
|
port: 80,
|
|
proxy: {
|
|
'/api-school': {
|
|
target: 'http://localhost:8090/',
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/api-school/, '')
|
|
}
|
|
}
|
|
}
|
|
})
|