/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, swcMinify: true, output: 'standalone', images: { unoptimized: true, domains: ['via.placeholder.com', 'raw.githubusercontent.com'] }, experimental: { appDir: false }, webpack: (config) => { config.resolve.fallback = { fs: false, path: false } return config } } module.exports = nextConfig