aboutsummaryrefslogtreecommitdiff
path: root/next.config.js
diff options
context:
space:
mode:
authorFactiven <[email protected]>2023-04-18 15:41:50 +0700
committerFactiven <[email protected]>2023-04-18 15:41:50 +0700
commita1f276c7e5ac8e10c3816849eb71628dd4f0f504 (patch)
tree03117e80719b936938b06bb0e52bea0b9426c443 /next.config.js
parentUpdate videoPlayer.js (diff)
downloadmoopa-a1f276c7e5ac8e10c3816849eb71628dd4f0f504.tar.xz
moopa-a1f276c7e5ac8e10c3816849eb71628dd4f0f504.zip
8th fixes
Diffstat (limited to 'next.config.js')
-rw-r--r--next.config.js7
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,
});