Spaces:
Sleeping
Sleeping
| /** @type {import('next').NextConfig} */ | |
| module.exports = { | |
| // reactStrictMode: false, | |
| images: { | |
| remotePatterns: [ | |
| { | |
| protocol: 'https', | |
| hostname: '**', | |
| }, | |
| ], | |
| }, | |
| experimental: { | |
| serverActions: { | |
| bodySizeLimit: '10mb', | |
| }, | |
| }, | |
| experimental: { | |
| serverComponentsExternalPackages: ['pino', 'pino-loki'], | |
| }, | |
| ...(process.env.USE_STANDALONE_BUILD ? { output: 'standalone' } : {}), | |
| }; | |