mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 20:35:19 +00:00
7 lines
196 B
TypeScript
7 lines
196 B
TypeScript
import { browser, dev } from '$app/environment';
|
|
|
|
export const ENDPOINT = browser
|
|
? `http://${location.hostname}:11434`
|
|
: dev
|
|
? 'http://127.0.0.1:11434'
|
|
: 'http://host.docker.internal:11434';
|