Closed jaydevelopsstuff closed 1 month ago
That's quite unexpected indeed. Modify the line 13
of /Users/.../Documents/Coding/Web/cosmil-website-solid/node_modules/vike/dist/esm/utils/virtual-files.js
and report back.
function isVirtualFileId(id) {
if (id.startsWith(idBase))
return true;
if (id.startsWith(tag + idBase))
return true;
- assert(!id.includes(idBase));
+ assert(!id.includes(idBase), { id, idBase });
return false;
}
Let's reopen once we get more information on this.
Description
Been running into this and despite some fiddling around I haven't been able to resolve it.
Client-side routing no longer works and it seems a full refresh occurs after every navigation. I'm using vike-solid by the way.