From 68ba5694bc0eddd148c7a195ffee4564599af674 Mon Sep 17 00:00:00 2001 From: andrzej Date: Thu, 3 Oct 2024 10:59:34 +0200 Subject: [PATCH] set base url --- next.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.mjs b/next.config.mjs index 5850805..ab1b307 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,7 @@ /** @type {import('next').NextConfig} */ const nextConfig = { output: "standalone", + basePath: "/subman", webpack: (config) => { config.externals = [...config.externals, "bcrypt"]; return config;