Files
cfw-autumn/frontend/next.config.ts
2025-01-21 11:18:42 +00:00

9 lines
159 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
reactStrictMode: false,
/* config options here */
};
export default nextConfig;