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
6
7
export const ENDPOINT = browser
	? `http://${location.hostname}:11434`
	: dev
	? 'http://127.0.0.1:11434'
	: 'http://host.docker.internal:11434';