fix: return port 8000

This commit is contained in:
EETagent 2022-12-03 18:17:22 +01:00
parent 7243be6bb7
commit 1c7b6eac55

View file

@ -2,7 +2,7 @@ import type { AxiosError } from "axios";
export type Fetch = (input: RequestInfo, init?: RequestInit) => Promise<Response>
export const API_URL = "http://localhost:9000";
export const API_URL = "http://localhost:8000";
export interface ApiError {
error: AxiosError,