/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, eslint: { ignoreDuringBuilds: true }, transpilePackages: ['@coursecraft/shared'], images: { remotePatterns: [ { protocol: 'https', hostname: '**.supabase.co', }, { protocol: 'https', hostname: '**.r2.cloudflarestorage.com', }, ], }, }; module.exports = nextConfig;