anyone tried deploying sveltekit + bun sites? its building but not running, and the only thing from build console to value is
TypeScript
> Using svelte-adapter-bun
.svelte-kit/adapter-bun/entries/hooks.server.js (94:45) [UNRESOLVED_IMPORT] Warning: Could not resolve 'async_hooks' in .svelte-kit/adapter-bun/entries/hooks.server.js
╭─[ .svelte-kit/adapter-bun/entries/hooks.server.js:94:46 ]
│
94 │ const { AsyncLocalStorage } = await import("async_hooks");
│ ──────┬──────
│ ╰──────── Module not found, treating it as an external dependency
────╯
which is of no help, doesnt work with node-adapter either, when set to bun runtime
TL;DR
Developers are experiencing deployment issues with Sveltekit + Bun sites. The error message points to an unresolved import related to 'async_hooks,' causing the runtime to not deploy properly. Switching to the node-adapter does not resolve the issue either.Sveltekit + Bun sites runtime not deploying
Recommended threads
- [Regression] Appwrite 25.1.0 returns Inv...
I've already opened an issue on GitHub, but somewhat it doesn't seem like GitHub is monitored very closely, so I'm leaving a bug report here on Discord as well....
- Helping in unblock my account
I deleted my Appwrite Cloud account that was linked via GitHub. Now I activated my GitHub Student Pack and want to sign up again using the same GitHub account, ...
- Not allowed permission to upsert a prese...
```js const presenceID = ID.unique(); setPID(presenceID); const presence = await presences.upsert({ presenceId: presenceID, status: "online"...