From 0eeb5b2437b531699f8075c5904c951c8c09a386 Mon Sep 17 00:00:00 2001 From: andrzej Date: Thu, 3 Oct 2024 16:13:49 +0200 Subject: [PATCH] try different basePath --- next.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index ab1b307..7ca3c1d 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,7 +1,7 @@ /** @type {import('next').NextConfig} */ const nextConfig = { output: "standalone", - basePath: "/subman", + basePath: "subman", webpack: (config) => { config.externals = [...config.externals, "bcrypt"]; return config;