diff options
| author | real-zephex <[email protected]> | 2024-03-21 10:08:56 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-21 10:08:56 +0530 |
| commit | 7932b71d55f621ad5cfa4a96d637ce90f366a10c (patch) | |
| tree | a51f8e490e09a45cb8064812c0693536692542c7 /next.config.mjs | |
| parent | Update README.md (diff) | |
| download | dramalama-7932b71d55f621ad5cfa4a96d637ce90f366a10c.tar.xz dramalama-7932b71d55f621ad5cfa4a96d637ce90f366a10c.zip | |
fixes: anime section is fully server rendered, added a loading screen for info and video page, minor css optimizations
Diffstat (limited to 'next.config.mjs')
| -rw-r--r-- | next.config.mjs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/next.config.mjs b/next.config.mjs index 175f46f..1ac477c 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -15,8 +15,17 @@ const nextConfig = { protocol: "https", hostname: "gogocdn.net", }, + { + protocol: "https", + hostname: "asianimg.pro", + }, ], }, + logging: { + fetches: { + fullUrl: true, + }, + }, }; export default nextConfig; |