Files
slaapkampioenv2/next.config.mjs
Sam Geyskens cfd9ed4eae
All checks were successful
Build & Deploy / build (push) Successful in 1m41s
Fix: JWT session strategy + image optimalisatie uit voor ARM
2026-05-15 09:39:08 +02:00

18 lines
381 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
images: {
// Sharp is moeilijk te installeren op ARM Alpine,
// voor Discord avatars is optimalisatie niet nodig
unoptimized: true,
remotePatterns: [
{
protocol: "https",
hostname: "cdn.discordapp.com",
},
],
},
};
export default nextConfig;