next.js / packages /next /src /cli /internal /turbo-trace-server.ts
AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
import { loadBindings } from '../../build/swc'
export async function startTurboTraceServerCli(
file: string,
port: number | undefined
) {
let bindings = await loadBindings()
bindings.turbo.startTurbopackTraceServer(file, port)
}