Kevin Marrec
Kevin Marrec
@laurentpayot Okay ! I didn't look deep at what was existing 4 months ago and what exists now, but all we can do for now is wait, I guess !
@laurentpayot Ok cool ! Please forward your changes/code if you succeed to make it working :)
@laurentpayot Ok, thanks for your feedback ! Have you any advices to get started with Service Workers using Quasar PWA, considering all we talked about ? I mean should I...
@laurentpayot Ok ! Have you any websites which may references sw-precache API better than the Official GitHub's one ? I'll give it a try
Any update on this ?
@NickBolles Could you take into account my requested changes ? then make your PR compatible with new monorepo (that's why you get lot of conflicts)
@NickBolles Can you fix conflicts & tests ? Thanks :)
Encountered same issue (I'm on WSL2 but my code is on the Subsystem), fixed with `vite.server.watch.usePolling`. # Reproduction ```vue const data = ref('a') {{ data }} ``` Then changes `ref('a')`...
As an alternative of `vite.server.watch.usePolling` option, you can add this to your Shell profile (`.bashrc`/`.zshrc`, ...) : ```sh # Workaround for Chokidar Watcher export CHOKIDAR_USEPOLLING=1 ``` This will do the...
It's mentionned in documentation : https://typescript.nuxtjs.org/guide/setup.html#configuration > You will also need to provide types for Vue files by adding the following type declaration > ...