Files
leopost/next.config.ts
Michele 79f9d73af0 Fix redirect loop: add trailingSlash config
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-31 15:01:25 +01:00

9 lines
152 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
basePath: '/leopost',
trailingSlash: true,
};
export default nextConfig;