import type { NextConfig } from "next"; import path from "path"; const nextConfig: NextConfig = { turbopack: { // Set root to parent directory to support monorepo workspace structure root: path.resolve(__dirname, ".."), }, }; export default nextConfig;