Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 4 additions & 10 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,11 @@
const nextConfig = {
// prevent double render on dev mode, which causes 2 frames to exist
reactStrictMode: false,
// The app renders frame images itself (frames.js/sharp) and never uses
// next/image; the previous wildcard remotePatterns left /_next/image open
// as a public image-transformation proxy, burning Vercel quota.
images: {
remotePatterns: [
{
hostname: "*",
protocol: "http",
},
{
hostname: "*",
protocol: "https",
},
],
unoptimized: true,
},
};

Expand Down