Files
lets-event/next.config.ts
rmcampos c1e0dd196f
Deploy to Vercel / Deploy to Vercel (push) Successful in 6m20s
feat: add user picture support using vercel blob
2026-06-19 13:48:12 -03:00

15 lines
249 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "*.public.blob.vercel-storage.com",
},
],
},
};
export default nextConfig;