/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, swcMinify: true, experimental: { appDir: true }, images: { remotePatterns: [ { protocol: "https", hostname: "**.anilist.co", }, ], }, output: "standalone" } module.exports = nextConfig