video-flow-b/next.config.js
2025-06-19 17:15:03 +08:00

11 lines
195 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
eslint: {
ignoreDuringBuilds: true,
},
images: { unoptimized: true },
};
module.exports = nextConfig;