/** @type {import('next').NextConfig} */ const nextConfig = { output: "standalone", images: { remotePatterns: [ { protocol: "https", hostname: "**", }, { protocol: "http", hostname: "localhost", }, { protocol: "http", hostname: "192.168.10.197", }, ], }, experimental: { serverActions: { bodySizeLimit: "10mb", }, }, }; module.exports = nextConfig;