Joaquín Sánchez
Joaquín Sánchez
closing this since `period` is defined outside the function
Try adding `.default` when registering the unplugin icons webpack plugin in the Next configuration file: https://github.com/unplugin/unplugin-icons/pull/387
The problem is turbopack: - https://github.com/unplugin/unplugin-icons/issues/281 - https://github.com/unjs/unplugin/issues/302 - https://turbo.build/pack/docs/migrating-from-webpack#will-we-be-able-to-use-webpack-plugins
Just use a custom sw including both pwa stuff and push notifications logic. Check any example in the pwa repo for a custom sw (injectManifest streagy) for pwa stuff. You...
iirc you need to add `main.scss` adding it to nuxt css entry, check https://github.com/Pinegrow/pg-nuxt-vuetify/blob/main/nuxt.config.ts#L100-L104 , https://github.com/Pinegrow/pg-nuxt-vuetify/blob/main/nuxt.config.ts#L112-L114, https://github.com/Pinegrow/pg-nuxt-vuetify/blob/main/app/assets/vuetify/main.scss and https://github.com/Pinegrow/pg-nuxt-vuetify/blob/main/app/assets/vuetify/settings.scss: ```css // Any variables in the sass files in this folder...
Remember to disable vuetify styles: https://github.com/Pinegrow/pg-nuxt-vuetify/blob/main/nuxt.config.ts#L109-L110
We're using pnpm as package manager and we enable shell-emulator in `.npmrc` file.
Not easy, maybe we can add a few more slots (then we'll have some problems with styles): check this PR to add just a new switcher https://github.com/unocss/unocss/pull/3931
@jkrumbiegel check https://github.com/vuejs/vitepress/pull/4000 , maybe solves your issue, check https://github.com/vuejs/vitepress/pull/4000/files#diff-a7061f07ab6f5b99e8aa7e4d0c13c357f9bbcc77ce46b99d32b10fd86df8452dR96-R105 (you can include a custom component with the version selector at the end of your nav): 
If you use server pages and api endpiints you should add these urls to navigateFallbackDenylist regex array, check this issue https://github.com/vite-pwa/sveltekit/issues/65