Files
JustAnime/next.config.mjs
2025-06-18 18:54:06 +05:30

18 lines
277 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
env: {
// Environment variables here
},
images: {
unoptimized: true,
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
],
}
};
export default nextConfig;