From bf0a23c1175b5c3bf9775a6db0a8bdf4b034f0ea Mon Sep 17 00:00:00 2001 From: Debian Dev4 Date: Wed, 24 Sep 2025 16:11:30 +0000 Subject: [PATCH] fix(next): set assetPrefix to /lecoffre for correct static assets under subpath --- next.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.js b/next.config.js index b4d9013b..7b1aaa64 100644 --- a/next.config.js +++ b/next.config.js @@ -4,6 +4,7 @@ const nextConfig = { reactStrictMode: false, output: 'standalone', basePath: '/lecoffre', + assetPrefix: '/lecoffre', typescript: { ignoreBuildErrors: true, },