From fd1409dca703cfab4998acd956f9cfda13758411 Mon Sep 17 00:00:00 2001 From: Michele Date: Sat, 31 Jan 2026 14:47:00 +0100 Subject: [PATCH] Fix: add basePath for /leopost/ subpath deployment Co-Authored-By: Claude Opus 4.5 --- next.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index e9ffa30..63ad251 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,8 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + basePath: '/leopost', + assetPrefix: '/leopost', }; export default nextConfig;