From 3cbb25a82ab8a0921ebb7ea3870c49bdebcc293c Mon Sep 17 00:00:00 2001 From: Chris Wanstrath <2+defunkt@users.noreply.github.com> Date: Wed, 25 Feb 2026 15:35:01 -0800 Subject: [PATCH] yeah --- src/cli/http.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/cli/http.ts b/src/cli/http.ts index 1cdaad1..85a642f 100644 --- a/src/cli/http.ts +++ b/src/cli/http.ts @@ -1,7 +1,5 @@ import type { Manifest } from '@types' -import { LOCAL_HOST } from '%config' - -const DEFAULT_HOST = process.env.DEV ? 'http://localhost:3000' : `http://${LOCAL_HOST}` +const DEFAULT_HOST = process.env.DEV ? 'http://localhost:3000' : 'http://toes.local' const normalizeUrl = (url: string) => url.startsWith('http://') || url.startsWith('https://') ? url : `http://${url}`