| 12345678910111213141516171819202122232425 |
- import type { NextConfig } from "next";
- const nextConfig: NextConfig = {
- output: "standalone",
- images: {
- remotePatterns: [
- {
- protocol: 'https',
- hostname: 'gravatar.com',
- port: '',
- pathname: '/avatar/**',
- },
- ],
- },
- async rewrites() {
- return [
- {
- source: "/installHook.js.map", // the request that raises 404
- destination: "/404", // serve a silent 404 response
- },
- ];
- },
- };
- export default nextConfig;
|