From 8a0831fe485b3987603ffbd4c6579dea6c5f0ac3 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Tue, 25 Feb 2025 10:49:00 -0500 Subject: [PATCH] Update local API URL This doesn't affect production --- utils/api.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/api.tsx b/utils/api.tsx index dbc2d437..02c70ae5 100644 --- a/utils/api.tsx +++ b/utils/api.tsx @@ -210,7 +210,7 @@ class Api { } } -const api: Api = new Api({ url: process.env.NEXT_PUBLIC_SIERO_API_URL || 'https://localhost:3000/api/v1'}) +const api: Api = new Api({ url: process.env.NEXT_PUBLIC_SIERO_API_URL || 'https://localhost:3000/v1'}) api.createEntity({ name: 'users' }) api.createEntity({ name: 'parties' }) api.createEntity({ name: 'characters' })