Files
asepharyana-hub/apps/tools/frontend/next.config.ts
T

10 lines
172 B
TypeScript
Raw Normal View History

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