import type { NextConfig } from "next";
import path from "path";

const nextConfig: NextConfig = {
  // Set the root directory to silence the multiple lockfiles warning
  // This tells Next.js that the frontend directory is the workspace root
  turbopack: {
    root: path.resolve(__dirname),
  },
};

export default nextConfig;
