Compare commits

..
1 Commits
Author SHA1 Message Date
Amirmahdi 6c005783e0 fix 2026-06-30 14:42:19 +03:30
+3
View File
@@ -2,5 +2,8 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
output: 'export', output: 'export',
// Emit each route as a folder with index.html (e.g. admin/login/index.html)
// so static hosts (nginx) can serve clean URLs without custom rewrite rules.
trailingSlash: true,
}; };
export default nextConfig; export default nextConfig;