first commit

This commit is contained in:
gotolombok
2026-01-31 17:21:32 +08:00
commit f839fbd63a
109 changed files with 19204 additions and 0 deletions

58
next.config.ts Normal file
View File

@@ -0,0 +1,58 @@
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;