From 09435190263f9ae1225b504dcae825973613735f Mon Sep 17 00:00:00 2001 From: Max Leiter Date: Mon, 7 Mar 2022 23:45:13 -0800 Subject: [PATCH] client: add debug log to next.config.js --- client/next.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/next.config.js b/client/next.config.js index 3aaadd88..15362d47 100644 --- a/client/next.config.js +++ b/client/next.config.js @@ -1,6 +1,8 @@ const dotenv = require("dotenv"); dotenv.config(); +console.log(`${process.env.API_URL}/:path*`); + /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true,