fry69

Results 270 comments of fry69

I can confirm that just putting in `wrangler.jsonc`: ```json "main": "./_fresh/server.js" ``` Will produce this error: ``` Task deploy deno task build && wrangler deploy Task build vite build vite...

Bare bones reproduction repo -> https://github.com/fry69/fresh-vite-cloudflare-repro (I even tested it with `_fresh/server.js` instead of `./_fresh/server.js`, same error)

If I try the approach with the `server.js` file, I get this error: ``` Task build vite build vite v7.1.5 building for production... ✓ 25 modules transformed. _fresh/client/.vite/manifest.json 0.84 kB...

Can you please share what particularly did work with Fresh 1.7.3 and does not work anymore in Fresh 2? How did you use VS Code's `launch.json` and how did setting...

To tackle default context, I'd recommend to have a look at the [repository map](https://aider.chat/2023/10/22/repomap.html) feature from [Aider](https://aider.chat/). The gist is that an enhanced [ctags](https://en.wikipedia.org/wiki/Ctags#Tags_file_formats) style map of files in the...

I followed your steps and cannot reproduce this problem on my machine (macOS 15.7.1 aarch64). The HMR works fine and produces this output on the Vite dev server console: ```shell...

FYI: Searching for the other part of your reported error (`transport was disconnected`) in context of Vite reveals a few open issues for Astro and Svelte, with reports of that...

FYI, here is a possible fix for this race condition, analysis in the PR: #3519

The only way I can explain this my head is that your system somehow manages to trigger HMR in an extremely fast loop. E.g. one save in your editor somehow...

Since HMR get handled by Vite and that also receives those file change events, I think you want to report it there and see if they can add some kind...