From cc848a662fee9e3286aed6302be9c44059202d43 Mon Sep 17 00:00:00 2001 From: Munawwirul Jamal Date: Thu, 16 Oct 2025 12:55:22 +0700 Subject: [PATCH] dev: hotfix, default API_ORIGIN --- nuxt.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 8176a4fb..c5ac4c6c 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -5,9 +5,9 @@ import process from 'node:process' export default defineNuxtConfig({ devtools: { enabled: true }, runtimeConfig: { - API_ORIGIN: process.env.NUXT_API_ORIGIN || 'https://main-api.dev-hopis.sabbi.id', + API_ORIGIN: process.env.NUXT_API_ORIGIN || 'http://localhost:3000', public: { - API_ORIGIN: process.env.NUXT_API_ORIGIN || 'https://main-api.dev-hopis.sabbi.id', + API_ORIGIN: process.env.NUXT_API_ORIGIN || 'http://localhost:3000', } }, ssr: false,