-
Notifications
You must be signed in to change notification settings - Fork 1
/
electron.vite.config.ts
42 lines (41 loc) · 1.26 KB
/
electron.vite.config.ts
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 { resolve } from 'path'
import { defineConfig, loadEnv, externalizeDepsPlugin } from 'electron-vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
main: {
plugins: [externalizeDepsPlugin()]
},
preload: {
plugins: [externalizeDepsPlugin()]
},
renderer: {
//配置less
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true // 支持内联 JavaScript
}
}
},
resolve: {
alias: {
'@renderer': resolve('src/renderer/src')
}
},
plugins: [react()],
//需要反向代理时开启
server: {
proxy: {
'/api': {
//在开发服务器http://localhost:5609和目标服务器http://localhost:3008的中间层,看起来请求是直接从这个中间层发送来的
target: 'http://localhost:3008',
//target: import.meta.env.RENDERER_VITE_BASE_URL, #不能直接使用要使用 loadEnv 载入,ts 不会检查配置文件
changeOrigin: true
//如果使用 Rewrite发送到后端的 pathname: /getMenu
//如果不使用,则发送到后端的 pathname: /api/getMenu,即/api 还保留着
//rewrite: (path) => path.replace(/^\/api/, '')
}
}
}
}
})