next.config.ts 150 B

123456789
  1. import type { NextConfig } from "next";
  2. const nextConfig: NextConfig = {
  3. turbopack: {
  4. root: process.cwd(),
  5. },
  6. };
  7. export default nextConfig;