Files
real-time-fund/next.config.js
2026-01-31 21:04:50 +08:00

10 lines
159 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
appDir: true
}
};
module.exports = nextConfig;