Files
JustAnime/next.config.mjs
tejaspanchall 00797f0c96 fresh
2025-05-28 23:11:20 +05:30

18 lines
301 B
JavaScript

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