21 lines
425 B
JavaScript
21 lines
425 B
JavaScript
/** @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;
|