Dalibor Gogic
Dalibor Gogic
Hi @markshust. Web Vitals is an **initiative** by Google to provide unified guidance for quality signals that are essential to delivering a great user experience on the web. More info...
```bash [vite] Internal server error: Failed to resolve entry for package... ``` Workaround; Entry point differs from `index.js` in root folder. Add your entrypoint to `package.json` main key: ```json {...
Hi @vettndr you need to add `directive` `v-interpolation`. ```html import hello from '../hello.md' export default { computed: { hello() { return hello } } }
It's easy to modify meta tags. Proof of concept: [Live Demo](https://vuejs-ssr-meta-wsbpvdcfsj.now.sh) [Repo](https://github.com/daliborgogic/vuejs-ssr-meta)
@ram-you For example in [HomeView](https://github.com/daliborgogic/vuejs-ssr-meta/blob/master/src/views/HomeView.vue) we have [function](https://github.com/daliborgogic/vuejs-ssr-meta/blob/master/src/views/HomeView.vue#L7) to set title, description. image, etc in store. On `preFetch` store will be updated with this data. When serving `head` we replace...
@ram-you [og:url fix](https://github.com/daliborgogic/vuejs-ssr-meta/commit/46f23e023335e321402b2eda2199cd4ebeaca419) and [Updated example](https://vuejs-ssr-meta-wsbpvdcfsj.now.sh/contact) Please use [issues](https://github.com/daliborgogic/vuejs-ssr-meta/issues) 
@ktquez You don't nead vue-meta: [Live Demo](https://vuejs-ssr-meta-wsbpvdcfsj.now.sh/) [Repo](https://github.com/daliborgogic/vuejs-ssr-meta)
What about IPv6? ```javascript const isLocalhost = Boolean( location.hostname === 'localhost' || location.hostname === '[::1]' || location.hostname.match(/^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/) ) ``` edited: extra space
@harlan-zw For now no idea. Will check what we can and what we can with `hooks`. You can close this issue. If we found a solution we will make a...
@harlan-zw yes, it's regular SSR. You are right. Workaround until there is a better way ```diff - const { headTags } = await renderSSRHead(head) + const decoder = new TextDecoder()...