From 92515efcc3358a1b6100268884a0052b2970460e Mon Sep 17 00:00:00 2001 From: Baptiste Arnaud Date: Thu, 10 Feb 2022 14:33:39 +0100 Subject: [PATCH] =?UTF-8?q?ci(lp):=20=F0=9F=9B=82=20=20Fix=20viewer=20host?= =?UTF-8?q?=20env=20name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/landing-page/next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/landing-page/next.config.js b/apps/landing-page/next.config.js index 1e6c1b6b23..534e71f9b9 100644 --- a/apps/landing-page/next.config.js +++ b/apps/landing-page/next.config.js @@ -33,7 +33,7 @@ module.exports = withBundleAnalyzer({ return [ { source: '/:path*', - destination: `${process.env.VIEWER_HOST}/:path*`, + destination: `${process.env.NEXT_PUBLIC_VIEWER_HOST}/:path*`, }, ] },