mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-22 05:37:48 +00:00
32 lines
675 B
JavaScript
32 lines
675 B
JavaScript
import { fileURLToPath, URL } from 'node:url'
|
|
|
|
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
require('dotenv').config()
|
|
require('dotenv').config({ path: `.env.local`, override: true });
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
|
|
plugins: [
|
|
vue()
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
|
}
|
|
},
|
|
server: {
|
|
proxy: {
|
|
"/api/": {
|
|
target: process.env.GPT4ALL_API,
|
|
changeOrigin: process.env.GPT4ALL_API_CHANGE_ORIGIN,
|
|
secure: process.env.GPT4ALL_API_SECURE,
|
|
rewrite: (path) => path.replace(/^\/api/, ""),
|
|
},
|
|
},
|
|
},
|
|
|
|
})
|