ChandimaPrabath
commited on
Commit
•
74841d4
1
Parent(s):
255daa0
fix
Browse files- frontend/next.config.mjs +5 -4
frontend/next.config.mjs
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
/** @type {import('next').NextConfig} */
|
2 |
const nextConfig = {
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
7 |
};
|
8 |
|
9 |
export default nextConfig;
|
|
|
1 |
/** @type {import('next').NextConfig} */
|
2 |
const nextConfig = {
|
3 |
+
images: {
|
4 |
+
loader: "default",
|
5 |
+
domains: ["artworks.thetvdb.com"],
|
6 |
+
cacheDirPath: "/tmp/app/.next/cache",
|
7 |
+
},
|
8 |
};
|
9 |
|
10 |
export default nextConfig;
|