Andrew

Results 7 comments of Andrew

It also breaks if add some padding to label element. Adding relative class in div fixes the issue

Okey. I made it: ```js import generateETag from 'etag' import axios from 'axios' export default { async asyncData ({ res }) { let { data } = await axios.get(api) const...

Nuxt v2.9 brought new cool feature that related to SPR use case: [$nuxt.refresh()](https://github.com/nuxt/nuxt.js/pull/6194). $nuxt.refresh() can refresh page data reactively without actually reloading i.e rerendering the page like window.location.reload() do. Useful...

Something is coming: https://github.com/pi0/nuxt-swr-cache 🤗

@appinteractive Correct. `'stale-while-revalidate'` cache strategy isn't a Vercel`s invention. So making nuxt module to handle it without vendor lock-in makes sense. BTW https://github.com/vercel/swr serves for another purpose. It handles fetching...

Seems like "preconnect" works that way: nuxt.config.js: ``` link: [ { rel: "preconnect", href: "https://cdn.domain.com/", crossorigin: true } ] ``` Other tags I have not tested

Why this is still not merged?