Farnabaz
Farnabaz
Do you confirm that disabling dark mode solves the issue? @Jonarod
You can add `apple-touch-icon` meta in `nuxt.config.js`. It will overwrite the transparent icon on iOS ```js export default { head: { link: [ { rel:"apple-touch-icon", sizes:"128x128", href:"apple-icon.png" } ] }...
No this isn't new feature. This can be used on any Nuxt projects (with or without PWA module). PWA module does the same thing under the hood. Checkout [Nuxt documentation](https://nuxtjs.org/docs/2.x/features/meta-tags-seo/)
There is two options, [swDest](https://pwa.nuxtjs.org/workbox#swdest) and [swURL](https://pwa.nuxtjs.org/workbox#swurl) in the docs that might help you.
You can follow these steps: - Create a directory inside `static` dir, lets call it `preview` - Change `swDest` to `resolve('./static/preview/sw.js')` ```js import { resolve } from 'path'; export default...
@mrleblanc101 You can change axios port using `process.env.API_PORT`. As @gtl-alex mentioned for the client side you can use `browserBaseURL: '/'` to use website domain.
@vipulphysiofirst You should mock axios inside jest. checkout #105
`Access-Control-Allow-Origin` is a response header you need to add this header to the response from your server. More likely you should add `cache-control` as a response header. Also checkout [Preventing...
Hey, Sorry for the late response. You can't set multiple baseURLs, but there is solution for your situation. You can create two different instances of axios based on your configurations....
As I tested, it works fine with latest release.