Files
asepharyana-hub-hub/next.config.ts
T

11 lines
173 B
TypeScript
Raw Normal View History

2026-07-23 06:24:10 +07:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
reactCompiler: true,
turbopack: {
root: process.cwd(),
},
2026-07-23 06:24:10 +07:00
};
export default nextConfig;