---
config:
theme: dark
sequence:
noteAlign: left
---
sequenceDiagram
participant Headless as @coveo/headless
participant SSR as Server-side
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { resolve, parse } from "node:path"; | |
import { readFile, writeFile } from "node:fs/promises"; | |
/** | |
* @typedef File | |
* @property {'file'} type | |
*/ | |
/** | |
* @typedef Directory |
OlderNewer