video-flow-b/next.config.js
2025-07-02 21:12:28 +08:00

22 lines
471 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
images: { unoptimized: true },
async rewrites() {
return [
{
source: '/api/proxy/:path*',
destination: 'https://77.smartvideo.py.qikongjian.com/:path*',
},
{
source: '/api/resources/:path*',
destination: 'https://movieflow.api.huiying.video/:path*',
},
];
},
};
module.exports = nextConfig;