enable trailing slash in next config

This commit is contained in:
Kentai Radiquum 2025-07-27 02:55:06 +05:00
parent 8440465230
commit 85e51d8e4e
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -2,7 +2,8 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: 'export'
output: 'export',
trailingSlash: true
};
export default nextConfig;