Commit 568ce38f authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

endpoint address updated

parent c4413a7a
......@@ -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",
......
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';
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: {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment