Ronnie
Ronnie
> @NukeJS > > Would you provide an example and clarify what you mean by "middleware per route" in Express? ```js function logOriginalUrl (req, res, next) { console.log('Request URL:', req.originalUrl)...
I mean like: ```js import { createApp, createRouter } from 'h3' const app = createApp() const router = createRouter() .get('/', [middleware, middleware2], () => 'Hello World!') .get('/hello/:name', req => `Hello...
> Content v2 have same auto generated meta for each file. (names are changes though, and auto generated fields prefixed with `_` to prevent from possible conflict with non-generated content...
> You can use path prefix to search for your contents: > > Checkout [ContentList docs](https://content.nuxtjs.org/api/components/content-list) > > ``` > ... > ``` > > or using composable: > >...