fix: contants => constants

This commit is contained in:
AJ ONeal 2023-10-21 14:54:52 -06:00
parent 8e0638f67e
commit 0366fb8ef8
No known key found for this signature in database
GPG key ID: 65118FF2A9DB590F
3 changed files with 2 additions and 2 deletions

7
src/lib/constants.ts Normal file
View file

@ -0,0 +1,7 @@
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';