diff options
| author | zephex-alt <[email protected]> | 2024-05-06 21:36:56 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-05-06 21:36:56 +0000 |
| commit | 4f530d24403c6b092b337404b34ad76b79b86117 (patch) | |
| tree | f1e97da84229e131aefffa0f5dd156f14c3fd57c /next.config.mjs | |
| parent | UI enhancement (diff) | |
| download | dramalama-4f530d24403c6b092b337404b34ad76b79b86117.tar.xz dramalama-4f530d24403c6b092b337404b34ad76b79b86117.zip | |
added MOVIES support. SERIES support coming soon!
Diffstat (limited to 'next.config.mjs')
| -rw-r--r-- | next.config.mjs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/next.config.mjs b/next.config.mjs index a4fb287..e38fbe2 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -31,6 +31,10 @@ const nextConfig = { protocol: "https",
hostname: "sup-proxy.zephex0-f6c.workers.dev",
},
+ {
+ protocol: "https",
+ hostname: "image.tmdb.org",
+ },
],
},
logging: {
@@ -40,9 +44,9 @@ const nextConfig = { },
experimental: {
serverActions: {
- allowedOrigins: ["localhost:3000"]
- }
- }
+ allowedOrigins: ["localhost:3000"],
+ },
+ },
};
export default nextConfig;
|