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}`