school-file-portal/vite.config.js

60 lines
1.4 KiB
JavaScript
Raw Permalink Normal View History

2024-06-12 07:47:55 +00:00
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({
2024-06-24 07:20:12 +00:00
build: {
outDir: 'portal',
chunkSizeWarningLimit: 1600
},
base: '/portal',
2024-06-12 07:47:55 +00:00
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 *;
`,
}
}
2024-06-20 09:08:05 +00:00
},
server: {
2024-07-02 01:32:49 +00:00
host: '0.0.0.0',
port: 80,
2024-06-20 09:08:05 +00:00
proxy: {
2024-06-24 07:20:12 +00:00
'/api-school': {
2024-06-20 09:08:05 +00:00
target: 'http://localhost:8090/',
changeOrigin: true,
2024-06-24 07:20:12 +00:00
rewrite: (path) => path.replace(/^\/api-school/, '')
2024-06-20 09:08:05 +00:00
}
}
2024-06-12 07:47:55 +00:00
}
})