lollms-webui/web/vite.config.mjs

58 lines
1.7 KiB
JavaScript
Raw Normal View History

2023-05-02 22:53:27 +02:00
import { fileURLToPath, URL } from 'node:url'
2023-05-04 00:00:07 +03:00
import { defineConfig,loadEnv } from 'vite'
2023-05-02 22:53:27 +02:00
import vue from '@vitejs/plugin-vue'
2023-11-09 02:00:49 +01:00
2023-05-02 22:53:27 +02:00
// https://vitejs.dev/config/
2023-11-09 02:00:49 +01:00
export default async ({ mode }) => {
async function getFlaskServerURL() {
try {
const response = await fetch('/get_server_address'); // Replace with the actual endpoint on your Flask server
const serverAddress = await response.text();
2023-11-11 22:21:40 +01:00
if(serverAddress.includes('<')){
console.log(`Server address not found`)
return process.env.VITE_LOLLMS_API
}
2023-11-09 02:00:49 +01:00
console.log(`Server address: ${serverAddress}`)
return `${serverAddress}`; // Construct the full server address dynamically
} catch (error) {
// console.error('Error fetching server address:', error);
// Handle error if necessary
return process.env.VITE_LOLLMS_API
}
}
const serverURL = await getFlaskServerURL()
console.log(serverURL)
2023-05-04 00:00:07 +03:00
// Load app-level env vars to node-level env vars.
process.env = {...process.env, ...loadEnv(mode, process.cwd())};
return defineConfig({
2023-07-14 01:42:29 +02:00
2023-05-02 22:53:27 +02:00
plugins: [
vue()
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
server: {
proxy: {
"/api/": {
2023-11-09 02:00:49 +01:00
target: serverURL,//process.env.VITE_LOLLMS_API,//getFlaskServerURL(),// process.env.VITE_LOLLMS_API,
2023-07-16 18:57:30 +02:00
changeOrigin: process.env.VITE_LOLLMS_API_CHANGE_ORIGIN,
secure: process.env.VITE_LOLLMS_API_SECURE,
2023-05-02 22:53:27 +02:00
rewrite: (path) => path.replace(/^\/api/, ""),
},
2023-07-01 16:57:59 +03:00
// "/": {
2023-07-16 18:57:30 +02:00
// target: process.env.VITE_LOLLMS_API,
// changeOrigin: process.env.VITE_LOLLMS_API_CHANGE_ORIGIN,
// secure: process.env.VITE_LOLLMS_API_SECURE,
2023-07-01 14:47:03 +03:00
2023-07-01 16:57:59 +03:00
// },
2023-07-01 14:47:03 +03:00
2023-05-02 22:53:27 +02:00
},
2023-05-04 00:00:07 +03:00
}
})}