From fcc6f92ee874bda3112e593843c9204c4edb3dec Mon Sep 17 00:00:00 2001 From: OxSaitama Date: Fri, 27 Oct 2023 10:59:26 +0200 Subject: [PATCH] log config --- src/pages/_app.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx index 46c35112..96ac146c 100644 --- a/src/pages/_app.tsx +++ b/src/pages/_app.tsx @@ -58,10 +58,13 @@ const MyApp = (({ instance.FC_CLIENT_ID = fcClientId; instance.DOCAPOST_API_URL = docaposteApiUrl; + console.log("instance", instance); + return getLayout(); }) as AppType; MyApp.getInitialProps = async () => { + console.log("runtime config", publicRuntimeConfig); return { backApiProtocol: publicRuntimeConfig.NEXT_PUBLIC_BACK_API_PROTOCOL, backApiHost: publicRuntimeConfig.NEXT_PUBLIC_BACK_API_HOST,