Files

11 lines
175 B
TypeScript
Raw Permalink Normal View History

2025-10-20 19:29:24 -06:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2025-12-10 17:05:41 -06:00
turbopack: {
root: process.cwd(),
},
reactStrictMode: true,
2025-10-20 19:29:24 -06:00
};
export default nextConfig;