mirror of
https://github.com/danbulant/Portfolio
synced 2026-07-08 12:30:56 +00:00
fix: return port 8000
This commit is contained in:
parent
7243be6bb7
commit
1c7b6eac55
1 changed files with 1 additions and 1 deletions
|
|
@ -2,7 +2,7 @@ import type { AxiosError } from "axios";
|
||||||
|
|
||||||
export type Fetch = (input: RequestInfo, init?: RequestInit) => Promise<Response>
|
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 {
|
export interface ApiError {
|
||||||
error: AxiosError,
|
error: AxiosError,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue