fix: bun install symlinks

This commit is contained in:
eric
2026-03-06 23:52:27 +01:00
parent e567dad413
commit 40d621d1cf
24 changed files with 1464 additions and 56 deletions

View File

@@ -1,7 +1,9 @@
import { nanoid } from "nanoid";
const app = document.querySelector("#app");
if (app) {
app.textContent = "Hello from monorepo app B";
const id = nanoid();
app.textContent = "Hello from monorepo app B " + id;
}
console.log("Hello from monorepo app B");