contants.ts 196 Bytes
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
import { browser, dev } from '$app/environment';

Timothy J. Baek's avatar
Timothy J. Baek committed
3
4
5
export const ENDPOINT = browser
	? `http://${location.hostname}:11434`
	: dev
Timothy J. Baek's avatar
Timothy J. Baek committed
6
7
	? 'http://127.0.0.1:11434'
	: 'http://host.docker.internal:11434';