You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We get an error from vite when trying to use the navigate function from "astro:transitions/client"
[vite]: Rollup failed to resolve import "astro:transitions/client" from "/home/jackshelton/dev/playground/qwik-astro-transitions/src/s_yca4lyuotcq.js".
This is most likely unintended because it can break your application at runtime.
If you do want to externalize this module explicitly add it to
`build.rollupOptions.external`
s_yca4lyuotcq.js is a symbol in Qwik. A lazy-loadable piece created whenever there is a $ sign used. It fails to resolve the import from vite.
Which my guess is because there is some piece of logic on the astro side that depends on a client directive being present. What would we do here for a framework that doesn't need hydration?
I guess we can check if it has a client directive and if it doesn't just pass it along?
The text was updated successfully, but these errors were encountered:
We get an error from vite when trying to use the
navigate
function from"astro:transitions/client"
s_yca4lyuotcq.js
is a symbol in Qwik. A lazy-loadable piece created whenever there is a$
sign used. It fails to resolve the import from vite.Which my guess is because there is some piece of logic on the astro side that depends on a client directive being present. What would we do here for a framework that doesn't need hydration?
I guess we can check if it has a client directive and if it doesn't just pass it along?
The text was updated successfully, but these errors were encountered: