← back to IWasCute

next.config.ts

12 lines

import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  async redirects() {
    return [
      { source: "/privacy", destination: "/privacy.html", permanent: true },
    ];
  },
};

export default nextConfig;