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

18 lines
346 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*',
},
];
},
};
module.exports = nextConfig;