I'm following the instructions to setup devtools, but my generated graph.json is always empty. I have the following in my nestoptions:
snapshot: true,
abortOnError: false,
and am running
void bootstrap().catch((err) => {
writeFileSync('graph.json', PartialGraphHost.toString() ?? '');
throw err;
});
The catch block is running (adding a log there works) but graph.json is empty.