mirror of
https://github.com/EasyTier/EasyTier.git
synced 2026-05-07 10:14:35 +00:00
Supports customizing the API server address of the Web frontend through the --api-host parameter (#913)
This commit is contained in:
@@ -3,9 +3,20 @@ import vue from '@vitejs/plugin-vue'
|
||||
// import { viteSingleFile } from "vite-plugin-singlefile"
|
||||
|
||||
const WEB_BASE_URL = process.env.WEB_BASE_URL || '';
|
||||
const API_BASE_URL = process.env.API_BASE_URL || 'http://localhost:11211';
|
||||
|
||||
// https://vite.dev/config/
|
||||
export default defineConfig({
|
||||
base: WEB_BASE_URL,
|
||||
plugins: [vue(),/* viteSingleFile() */],
|
||||
server: {
|
||||
proxy: {
|
||||
"/api": {
|
||||
target: API_BASE_URL,
|
||||
},
|
||||
"/api_meta.js": {
|
||||
target: API_BASE_URL,
|
||||
},
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user