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