Files
nextjs-ts/next.config.mjs
Rami Bitar d7ebc09cbb Bump nextjs
2026-05-28 22:55:56 -04:00

22 lines
380 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
typescript: {
ignoreBuildErrors: true,
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "sb.frontend.co",
},
{
protocol: "https",
hostname: "supabase.frontend.co",
},
],
},
};
export default nextConfig;