next.config.ts 336 B

123456789101112131415
  1. import type { NextConfig } from "next";
  2. const nextConfig: NextConfig = {
  3. output: "standalone",
  4. async rewrites() {
  5. return [
  6. {
  7. source: "/installHook.js.map", // the request that raises 404
  8. destination: "/404", // serve a silent 404 response
  9. },
  10. ];
  11. },
  12. };
  13. export default nextConfig;