/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', reactStrictMode: true, typescript: { ignoreBuildErrors: true, }, images: { remotePatterns: [ { protocol: 'http', hostname: 'localhost', }, { protocol: 'http', hostname: 'macmini', }, { protocol: 'https', hostname: 'macmini', }, ], }, env: { NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'https://macmini:8000', }, } module.exports = nextConfig