aboutsummaryrefslogtreecommitdiff
path: root/next.config.mjs
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-03-18 14:03:32 +0530
committerreal-zephex <[email protected]>2024-03-18 14:03:32 +0530
commitb1f4f412059760d85f531c3d6e2ee626c9002d28 (patch)
treedbbb23233b9388170d52fb67de6c5f48a16c30d7 /next.config.mjs
parentfixed a minor bug (diff)
downloaddramalama-b1f4f412059760d85f531c3d6e2ee626c9002d28.tar.xz
dramalama-b1f4f412059760d85f531c3d6e2ee626c9002d28.zip
fixes: change the file extension to .jsx and fixed the video player sizes for tablets
Diffstat (limited to 'next.config.mjs')
-rw-r--r--next.config.mjs39
1 files changed, 19 insertions, 20 deletions
diff --git a/next.config.mjs b/next.config.mjs
index 06d109f..175f46f 100644
--- a/next.config.mjs
+++ b/next.config.mjs
@@ -1,23 +1,22 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
- images: {
- remotePatterns: [
- {
- protocol: 'https',
- hostname: 'asianimg.pro',
- pathname: '/cover/**',
- },
- {
- protocol: "https",
- hostname: "www.pngall.com"
- },
- {
- protocol: "https",
- hostname: "gogocdn.net"
- }
- ],
- },
- };
-
+ images: {
+ remotePatterns: [
+ {
+ protocol: "https",
+ hostname: "asianimg.pro",
+ pathname: "/cover/**",
+ },
+ {
+ protocol: "https",
+ hostname: "www.pngall.com",
+ },
+ {
+ protocol: "https",
+ hostname: "gogocdn.net",
+ },
+ ],
+ },
+};
+
export default nextConfig;
- \ No newline at end of file