Files
front-Censo/next.config.ts
T
2025-12-10 17:05:41 -06:00

11 lines
175 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
turbopack: {
root: process.cwd(),
},
reactStrictMode: true,
};
export default nextConfig;