AaronBeaudoin

Results 50 comments of AaronBeaudoin

Just some additional information. In the example above, I have `prerender: true` enabled, but if you disable it, the build completes, **however, you get an error at runtime**. I added...

In the minimal reproduction repo above, if I remove VPS from `vite.config.js` and create these files in the project root: ```html Test ``` ```js // index.js import { createApp, h...

I've finally managed to create a native Vite SSR minimal reproduction of this issue without VPS. Closing.

https://github.com/antfu/vite-plugin-md/issues/112

As a user, one of the things I love about `vite-plugin-ssr` is that it tries to be as framework agnostic as possible. Forcing it to accommodate some `type` URL parameter...

Just pinging this issue to see if there's been any progress in the last 3 weeks.

This PR appears to also add support for what I'm trying to do https://github.com/directus/directus/discussions/11905. Looking forward to seeing it merged!

If I comment out the `setTimeout` call in my code above and instead just use `[ctrl]+[c]` manually after about 5 seconds then all processes seem to be killed properly. According...

If the point is to ensure that compiling has completed before trying to kill the process then it's irrelevant. I get the `Compiled successfully.` message after about a second or...

Also it seems that using the `fork` function instead of the `spawn` function solves the issue as well: ```js const { fork: forkProcess } = require("child_process"); let devServerProcess = forkProcess(...