-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Qwik #19854
Comments
The dependency chain leading to In the meantime, I tried just copying the files where they are being searched for but then I get:
|
That most likely refers to qwik/src/optimizer/src/platform.ts#L134 where only node is checked for. I was able to locally patch
Even the hot module reload worked like a charm. So it seems just two things are needed
|
I've realized I should have started with why: Not being able to use Deno for development with Qwik precludes us from using Deno KV Store. |
How about this one? https://qwik.builder.io/docs/deployments/deno/ |
Please see my comment above:
The deployment adapter allows only deployment, not local development and testing. |
@zwn I'm quite late to the party, but if your goal is only to use the KV store provided by Deno, you can now use this: https://deno.com/blog/kv-npm That way you can use it in any server functions, even if you are outside the Deno environment. That's what we are doing and it works well 👍 |
Qwik
usesvite
so the basics should be thereHowever I am not having luck just trying to run
vite
as-is:If I use node to create default empty app and try running
vite
withdeno
I get a problem withsharp
:That seems to be discussed here:
I have also tried using
--node-modules-dir=true
and populating the node_modules with pnpm and npm but that also didn't work.It'd be great to be able to add qwik to create-vite-extra.
The text was updated successfully, but these errors were encountered: