21 lines
444 B
TypeScript
21 lines
444 B
TypeScript
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: supabaseHostname,
|
|
pathname: "/storage/v1/object/public/**",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|