Files
real-time-fund/next.config.js
2026-02-20 07:32:30 +08:00

12 lines
201 B
JavaScript

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