From 55175d8476eef88655603084229d0751678a23c9 Mon Sep 17 00:00:00 2001 From: Pauline Date: Wed, 2 Oct 2024 22:35:52 +0100 Subject: [PATCH] Fix asset prefix --- next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 3db7216..430c834 100644 --- a/next.config.js +++ b/next.config.js @@ -2,5 +2,5 @@ module.exports = { reactStrictMode: true, basePath: process.env.BASE_PATH || "", - assetPrefix: process.env.BASE_PATH ?? "" + "/", + assetPrefix: "/kratos-ui/", }