Prmbr/next.config.ts
2025-07-28 23:14:14 +08:00

35 lines
679 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'lh3.googleusercontent.com',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'avatars.githubusercontent.com',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: '*.supabase.co',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: '*.r2.cloudflarestorage.com',
port: '',
pathname: '/**',
}
],
},
};
export default nextConfig;