feat(docker): containerise the setup

This commit is contained in:
2026-07-26 17:37:23 +02:00
parent 5cb19caec2
commit e9a5eef051
6 changed files with 78 additions and 1 deletions
+6 -1
View File
@@ -1,11 +1,16 @@
import type { NextConfig } from "next";
const supabaseHostname = process.env.NEXT_PUBLIC_SUPABASE_URL
? new URL(process.env.NEXT_PUBLIC_SUPABASE_URL).hostname
: "localhost";
const nextConfig: NextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "kuichrzrbdwydixbdfon.supabase.co",
hostname: supabaseHostname,
pathname: "/storage/v1/object/public/**",
},
],