Genki Takiuchi
Genki Takiuchi
@wmertens I meant the tagged template literal function such as ```ts const tagFunction = (s:string|TemplateStringsArray) => { const value = typeof s === "string" ? s : s[0]; return value;...
I found the localized path for the `"/"` is resolved to `"//"` when the app runs in production mode. Here's a workaround: ```ts const getPath = localizePath(); export const usePath...
@wmertens I have misunderstood about the order of execution of tasks `api.update` and `build.full` that was `api.update` then `build.full`. But the right way was inverse. Now I did it.
@mcollina I have fixed and sent a PR :)
I have faced this issue on the production env at the version 1.5.6-dev20240611011722 It doesn't occured in dev mode. It has been solved by wrapping by the `$`
No one has this issue? If you want to save the state into the IndexedDB, this issue enforce us to serialize the object and lost its structure in the DB....
@PatrickJS Yes. Here's the example. https://stackblitz.com/edit/qwik-starter-ekj4if?file=src%2Froutes%2Findex.tsx
@gioboa Thanks :)
@gioboa I think there's noways to do this using existing public APIs. This is depending on the scopeId that is made of the styleId and `iCtx.$i$`. There is only one...
@wmertens > can you add an example, and why you can't just add the scopeId class on all the children you want to style The most usual example is styling...