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
I just tried adding qwikdev() to my integrations of an existing astro project (astro 4.11.0, @qwikdev/astro 0.5.16, @builder.io/qwik 1.5.6).
Everything works great in dev mode. However, once I build and preview, I get multiple 404s in the browser like http://localhost:4321/base/_astro/hoisted.DwPdqVDm.js net::ERR_ABORTED 404 (Not Found) and basically all client side javascript stops working.
with qwikdev() while without qwikdev() the base folder does not exist in the dist directory.
The configuration of the base url is set with base: "/base" in astro.config.ts. Is there anything I can do fix the qwikdev integration to work with my base url setup? Or is this a bug in in the integration?
The text was updated successfully, but these errors were encountered:
I just tried adding
qwikdev()
to my integrations of an existing astro project (astro 4.11.0, @qwikdev/astro 0.5.16, @builder.io/qwik 1.5.6).Everything works great in dev mode. However, once I build and preview, I get multiple 404s in the browser like
http://localhost:4321/base/_astro/hoisted.DwPdqVDm.js net::ERR_ABORTED 404 (Not Found)
and basically all client side javascript stops working.When I look at my
dist
directory it looks likewith
qwikdev()
while withoutqwikdev()
thebase
folder does not exist in thedist
directory.The configuration of the base url is set with
base: "/base"
inastro.config.ts
. Is there anything I can do fix theqwikdev
integration to work with my base url setup? Or is this a bug in in the integration?The text was updated successfully, but these errors were encountered: