File size: 335 Bytes
478d5b9
 
 
 
 
 
 
 
 
 
 
 
 
 
9011efd
478d5b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/** @type {import('next').NextConfig} */

module.exports = {
  images: {
    remotePatterns: [
      {
        protocol: 'https',
        hostname: '**',
      },
    ],
  },
  experimental: {
    serverComponentsExternalPackages: ['pino', 'pino-loki'],
  },
  ...(process.env.USE_STANDALONE_BUILD ? { output: 'standalone' } : {}),
};