contants.ts 185 Bytes
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
3
4
5
6
7
import { browser, dev } from '$app/environment';

export const ENDPOINT = dev
	? 'http://127.0.0.1:11434'
	: browser
	? 'http://127.0.0.1:11434'
	: 'http://host.docker.internal:11434';