Files
2026-07-21 16:46:47 +07:00

12 lines
174 B
TypeScript

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