SolyQuiz/next.config.ts
corenthin-lebreton 28aa3b0e10 initial project
2026-02-26 20:10:14 +01:00

15 lines
231 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**.supabase.co",
},
],
},
};
export default nextConfig;