forked from open-webui/open-webui
Update contants.ts
This commit is contained in:
parent
f5bca7c4d8
commit
c5e36c8d11
1 changed files with 8 additions and 5 deletions
|
@ -1,6 +1,9 @@
|
||||||
import { browser, dev } from '$app/environment';
|
import { browser, dev } from '$app/environment';
|
||||||
|
|
||||||
export const ENDPOINT = browser
|
export const ENDPOINT =
|
||||||
|
process.env.OLLAMA_ENDPOINT != undefined
|
||||||
|
? process.env.OLLAMA_ENDPOINT
|
||||||
|
: browser
|
||||||
? `http://${location.hostname}:11434`
|
? `http://${location.hostname}:11434`
|
||||||
: dev
|
: dev
|
||||||
? 'http://127.0.0.1:11434'
|
? 'http://127.0.0.1:11434'
|
||||||
|
|
Loading…
Reference in a new issue