Pooya Parsa
Pooya Parsa
> also sounds pretty complex, error-prone Happy to give it a try at least for types it should make it easier i imagine also less complex than rebundling optimization and...
Surely. I just did a quick try and noticed there are path imports (outside `packages/wrangler/src/config`) like `../logger` and `@cloudflare/workers-shared` dependency as well, maybe rebundling might work better, or if somehow...
The example above can be solved by enabling experimental WASM support. ```js export default defineNitroConfig({ srcDir: "server", experimental: { wasm: true } }); ``` But seems we have other issues...
BTW @jkomyno also shared https://github.com/jkomyno/nuxtjs-starter-nodejs, which is a working Nuxt+Nitro+Prisma example currently only bypassing unwasm. We should fix that to use native wasm and better support, will followup 👍🏼
@LukeHagar LMK, if you need any help with this (you can reach me also on discord `@pi0`)
From https://github.com/jshttp/cookie/issues/115#issuecomment-722841353, i am understanding that @dougwilson pointed out: > The Cookie header does not have httponly and secure flags like you are showing; that is the Set-Cookie header, which...
Hi dear @edimitchel thanks for the feedback. Indeed it could be easier with implementation. I am thinking to directly support unstorage as a wrapper utility because it makes sure utils...
Hi @edimitchel are you still planning to work on improvements?
This is a good idea! I am thinking to refactor some part of dev server worker utils to have a more consistent experience.
This is a nice enhancenment! I think we can use existing `isPublicAssetURL(id)` utility also to check both both direct ids and public base URLs. Any reason you haven't use that?