Farnabaz

Results 331 comments of Farnabaz

Hey, Thank you for creating issue, do you mind creating a reproduction sample based on [starter](https://github.com/nuxt-community/storybook/tree/master/examples/starter) example?

This is the issue with NPM modern peed dependency system, Until the fix, try using legacy peer dependency ``` npm install @nuxtjs/storybook --legacy-peer-deps ```

Hey, Sorry for the late response You can use `path` option instead of alias to change the route itself ``` path: '/event/:id' alias: - path: '/:username/:eventName/:eventCount' ```

Nuxt does not load components from `content` dir, because the content module adds source directories into Nuxt ignore paths. (https://github.com/nuxt/content/blob/main/src/module.ts#L286-L295) Otherwise, Vite's server will rebuild on every file change. Maybe...

@ManasMadrecha Could you update stakblitz project to reproduce this behavior?

AFAIK ignore option only applies to files inside `rootDir` and all files outside of root dir will not be affected by this. Also, I couldn't reproduce the issue in my...

> I believe that could be nice to do the same for global components as well in components/content/ (supporting extends too) Indeed, I think it will be good to generate...

I like the idea of having a base, especially in documentDriven mode which the catch-all page can register under this base path and the rest URLs will be handled normally...

Supporting full-text search is not planned yet. To generate `bodyPlainText` for contents you can use [transformers](https://content.nuxtjs.org/api/advanced#transformers).

Merging this to test on edge channel.