next.config.ts
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
async redirects() {
return [
{ source: "/privacy", destination: "/privacy.html", permanent: true },
];
},
};
export default nextConfig;