mirror of
https://github.com/JustAnimeCore/JustAnime.git
synced 2026-04-17 22:01:45 +00:00
18 lines
277 B
JavaScript
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;
|