Daniel Roe
Daniel Roe
Let's track the more general issue in https://github.com/nuxt/framework/issues/7206.
See my response at https://github.com/nuxt/nuxt.js/issues/9041#issuecomment-808738090. CSS prefixes will be added, but just not for widely supported properties like `transition`. You can view [this codesandbox](https://codesandbox.io/s/quiet-bird-h6ccl?file=/assets/main.scss:72-76) to confirm that CSS prefixes are...
@Mini-ghost The first approach seems better to me 👍
This should be resolved in nitropack v0.5.4. which you can get with `yarn upgrade nuxt` or `npm upgrade nuxt`. Let me know if not and I'll reopen.
A recently merged PR handles quotation marks within strings - it's only comments that are still wrongly parsed. A workaround is to move the comment to its own line: ```js...
Thank you ❤️
@nndnha `error` now provides just a Boolean value on client side (to prevent server details being unwittingly exposed) so you can `v-if` it but not print out other details on...
@nndnha See https://github.com/nuxt/framework/pull/2130#issuecomment-978008885 for the rationale. If you feel you need the full error details on client side hydration, perhaps you could share your use case?
@nndnha I understand. One note: if you need to get the status code on client side and don't mind an extra request, you can also _rerun_ the fetch. ```js const...