Files
course-craft-service/apps/web/next.config.js
2026-02-06 02:17:59 +03:00

20 lines
385 B
JavaScript

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