From 73fa80da7c4e2d352fbe555725656e8a91d39727 Mon Sep 17 00:00:00 2001 From: Michele Date: Sat, 31 Jan 2026 14:51:49 +0100 Subject: [PATCH] Add basePath for proper subpath deployment with nginx Co-Authored-By: Claude Opus 4.5 --- next.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index e9ffa30..fdc4395 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + basePath: '/leopost', }; export default nextConfig;