nexora / frontend /next.config.mjs
ChandimaPrabath's picture
nextjs image cache dir
255daa0
raw
history blame
No virus
206 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
domains: ['artworks.thetvdb.com'],
cacheDirectory: '/tmp/app/.next/cache'
},
};
export default nextConfig;