(value: string | Uint8Array)
| 10 | const clientAssetsDir = "dist/client/assets"; |
| 11 | |
| 12 | const digest = (value: string | Uint8Array): string => |
| 13 | createHash("sha256").update(value).digest("hex").slice(0, 12); |
| 14 | |
| 15 | const artifactPaths = (artifact: { |
| 16 | readonly source: string; |