-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
42 lines (39 loc) · 947 Bytes
/
vite.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { createHtmlPlugin } from 'vite-plugin-html'
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
import { systemName } from './src/settings'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
createHtmlPlugin({
inject: {
data: {
systemName,
},
},
}),
createSvgIconsPlugin({
iconDirs: [fileURLToPath(new URL('./src/icons/svg', import.meta.url))],
symbolId: 'icon-[dir]-[name]',
}),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
server: {
port: 5173,
host: '0.0.0.0',
proxy: {
'/api': {
target: 'http://zxctb.me:8892',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ''),
},
},
},
})