File size: 577 Bytes
eceac5b
 
 
3a14a3f
 
 
 
 
 
 
 
 
 
 
eceac5b
 
c23e9bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/** @type {import('next').NextConfig} */
const nextConfig = {
  reactStrictMode: true,
  output: 'standalone',
  // Ensure no file system writes for image handling
  images: {
    unoptimized: true, // Disable Next.js automatic image optimization which writes to disk
    domains: [], // No external image domains needed as we're using base64
    remotePatterns: [] // No remote patterns needed
  },
  // Additional security measures
  experimental: {
    serverComponentsExternalPackages: [] // No external packages that might do file I/O
  }
};

module.exports = nextConfig;