first commit

This commit is contained in:
2026-04-21 10:53:35 +01:00
commit bd8fe915f8
40 changed files with 2505 additions and 0 deletions

17
next.config.js Normal file
View File

@@ -0,0 +1,17 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
serverComponentsExternalPackages: ['@supabase/supabase-js'],
},
images: {
domains: ['localhost'],
remotePatterns: [
{
protocol: 'https',
hostname: '**.supabase.co',
},
],
},
}
module.exports = nextConfig