/** @type {import('next').NextConfig} */ const nextConfig = { // Use standalone output for server deployment output: 'standalone', // Image optimization images: { unoptimized: true, remotePatterns: [ { protocol: 'https', hostname: 'openwheels.racing', }, ], }, // Type checking during build typescript: { ignoreBuildErrors: false, }, }; module.exports = nextConfig;