From 568ce38fa1271406baa0b325b88a31fc6e00af31 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Sun, 8 Oct 2023 18:32:54 -0700 Subject: [PATCH] endpoint address updated --- package.json | 4 ++-- src/lib/contants.ts | 6 +++--- src/routes/+page.server.ts | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 9536369c..16d515b8 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "0.0.1", "private": true, "scripts": { - "dev": "vite dev", + "dev": "vite dev --host", "build": "vite build", "preview": "vite preview", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", @@ -36,4 +36,4 @@ "marked": "^9.1.0", "svelte-french-toast": "^1.2.0" } -} +} \ No newline at end of file diff --git a/src/lib/contants.ts b/src/lib/contants.ts index 1ecf7938..d76fce8a 100644 --- a/src/lib/contants.ts +++ b/src/lib/contants.ts @@ -1,7 +1,7 @@ import { browser, dev } from '$app/environment'; -export const ENDPOINT = dev - ? 'http://127.0.0.1:11434' - : browser +export const ENDPOINT = browser + ? `http://${location.hostname}:11434` + : dev ? 'http://127.0.0.1:11434' : 'http://host.docker.internal:11434'; diff --git a/src/routes/+page.server.ts b/src/routes/+page.server.ts index 0e13f79a..827666df 100644 --- a/src/routes/+page.server.ts +++ b/src/routes/+page.server.ts @@ -1,7 +1,7 @@ import { ENDPOINT } from '$lib/contants'; import type { PageServerLoad } from './$types'; -export const load: PageServerLoad = async ({ url, fetch }) => { +export const load: PageServerLoad = async ({ url }) => { const models = await fetch(`${ENDPOINT}/api/tags`, { method: 'GET', headers: {