Ilya Semenov

Results 102 comments of Ilya Semenov

`app.use` doesn't work indeed, but luckily there is a workaround: ```ts import serveStatic from "serve-static" export default defineNitroPlugin((nitroApp) => { nitroApp.h3App.stack.unshift({ route: "/uploads", handler: fromNodeMiddleware(serveStatic("./uploads", { immutable: true })), })...

I published a drop-in Nuxt 3 replacement for `nuxt-property-decorator`: https://github.com/IlyaSemenov/nuxt3-class-component. The existing components code just works without any modification.