import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  async rewrites() {
    return [
      { source: "/ar/:path*", destination: "/:path*" },
      { source: "/en/:path*", destination: "/:path*" },
    ];
  },
};

export default nextConfig;
