diff options
Diffstat (limited to 'next.config.js')
| -rw-r--r-- | next.config.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/next.config.js b/next.config.js index 5858743..6150453 100644 --- a/next.config.js +++ b/next.config.js @@ -9,8 +9,13 @@ const withPWA = require("next-pwa")({ module.exports = withPWA({ reactStrictMode: false, images: { - domains: ["tenor.com"], unoptimized: true, + remotePatterns: [ + { + protocol: "https", + hostname: "s4.anilist.co", + }, + ], }, trailingSlash: true, }); |