"vscode:/vscode.git/clone" did not exist on "f5eac3d19b89991d2e2c88f50efeb0fe5cc69a45"
constants.ts 196 Bytes
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
import { browser, dev } from '$app/environment';

AJ ONeal's avatar
AJ ONeal committed
3
4
export const API_ENDPOINT = browser
	? `https://localhost/api`
Timothy J. Baek's avatar
Timothy J. Baek committed
5
	: dev
AJ ONeal's avatar
AJ ONeal committed
6
7
	? `http://localhost:11434/api`
	: 'http://host.docker.internal:11434/api';