Files
johannes-portfolio/next.config.ts
2025-01-12 18:46:32 +01:00

9 lines
158 B
TypeScript

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