1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/** @type {import('next').NextConfig} */ const withPWA = require("next-pwa")({ dest: "public", register: true, disable: process.env.NODE_ENV === "development", }); module.exports = withPWA({ reactStrictMode: false, images: { unoptimized: true, remotePatterns: [ { protocol: "https", hostname: "s4.anilist.co", }, ], }, trailingSlash: true, });