From ff1703ef855f86af044f84af8adef22294072cb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateus=20Felipe=20Gon=C3=A7alves?= Date: Fri, 14 Jul 2023 09:37:39 -0300 Subject: [PATCH] fix(config): use manual setted HOST env variable instead of use VERCEL_URL --- website.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website.config.ts b/website.config.ts index 3be4f87d..15b1a1ca 100644 --- a/website.config.ts +++ b/website.config.ts @@ -4,6 +4,6 @@ export const config = { description: "Mateus Felipe's notes, articles, reflections and knowledge..." }, webserver: { - host: process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : 'http://localhost:3000' + host: process.env.HOST ?? 'http://localhost:3000' } }