Files
cineprime/next.config.ts
2026-01-31 17:21:32 +08:00

59 lines
1.1 KiB
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'pbcdnw.aoneroom.com',
},
{
protocol: 'https',
hostname: 'pbcdn.aoneroom.com',
},
{
protocol: 'https',
hostname: 'filmboom.top',
},
{
protocol: 'https',
hostname: '*.filmboom.top',
},
{
protocol: 'https',
hostname: '*.aoneroom.com'
},
{
protocol: 'https',
hostname: 'otakudesu.best',
},
{
protocol: 'https',
hostname: 'i0.wp.com',
},
{
protocol: 'https',
hostname: 'cdn.myanimelist.net',
},
{
protocol: 'https',
hostname: 'hwztchapter.dramaboxdb.com',
},
{
protocol: 'https',
hostname: '123movienow.cc',
},
{
protocol: 'https',
hostname: '*.123movienow.cc',
},
{
protocol: 'https',
hostname: '*.dramaboxdb.com',
}
],
},
};
export default nextConfig;