diff options
| author | Factiven <[email protected]> | 2023-04-18 15:41:50 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-04-18 15:41:50 +0700 |
| commit | a1f276c7e5ac8e10c3816849eb71628dd4f0f504 (patch) | |
| tree | 03117e80719b936938b06bb0e52bea0b9426c443 /next.config.js | |
| parent | Update videoPlayer.js (diff) | |
| download | moopa-a1f276c7e5ac8e10c3816849eb71628dd4f0f504.tar.xz moopa-a1f276c7e5ac8e10c3816849eb71628dd4f0f504.zip | |
8th fixes
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, }); |