Sébastien Chopin

Results 970 comments of Sébastien Chopin

What about using `from` key: ```ts defineNuxtConfig({ extends: [ './base', // Pages would be merged with project-level pages { from: './blog', pages: { prefix: '/blog' }, middleware: false } ]...

Could you share an example of the configuration you want the user to provide through the `nuxt.config` @gaetansenn ?

I would instead let the user define it like we do for the `app/router.options.ts` if you want it to be customisable on the application side. The main question is, do...

I would recommend to anyway use the `app.config.ts` with the `vunix` key, this way you don't have to handle HMR yourself. It is also possible to type it so users...

That makes sense to keep the layer setting the merging strategy with the function, happy with this and avoid breaking changes. Regarding `nuxt-config-schema`, how can we then define the default...

> BTW in general and about docus example, i would use an object when designing an extendable configuration interface (an object mapping from link names to their options for links)....

Looks great for me @lihbr ❤️‍🔥

This is an awesome work ❤️ IMO it is good to merge in the current state and we can always iterate to improve, this is already much better than the...

Added back to `useId` to be similar to [React useId](https://react.dev/reference/react/useId) to avoid more mental work and since it has to be used inside a component. I updated it to generate...