people-reading/web/next.config.ts
2026-05-12 11:19:16 +08:00

8 lines
130 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
reactStrictMode: true,
};
export default nextConfig;