brunomgmateus
Cannot create new nuxt? Error with requested module 'db0'
Ok, there's a new issue regarding it now.
Solution is to add
"overrides": { "db0": "^0.2.3"}}
to you package.json.
Here's the issue: https://github.com/nuxt/nuxt/issues/307916 replies
How to not have nested layout/pages refresh when the main layout changes
If what you want is just cosmetic change, my advice is to use css media queries for responsive adjustments, or something like TailwindCSS. It's very good nowadays, and you can create responsive styling in a very controllable and effective way.
15 replies
How to not have nested layout/pages refresh when the main layout changes
As far as I know, a layout change will always trigger a refresh, because the layout is very close to the top of the chain, and so any change will trigger a refresh on all children components.
Usually, you would want that, to ensure that everything is recalculated according to the new layout.
15 replies
500 error code just after upgrading to 3.15v
Could be related to https://discord.com/channels/473401852243869706/1321793852901818368
Try to override to Vite 5 on package.json, as a temporary measure.
8 replies
i18n language auto detection not working
Are you using "prefix_except_default" strategy?
There's currently a pending issue that may be affecting you.
https://github.com/nuxt-modules/i18n/issues/3039
5 replies
Is it possible to exclude a component from a cached route?
Thank you. I assumed that, but I'm also guessing that, being a fairly used scenario, there would be some way of bailing some components from cache. Thanks anyway (happy that it wasn't a dumb question 🙂
4 replies