@nuxt/docs-nightly 4.3.0-29481269.0645678f → 4.3.0-29481280.f3d5bc5f

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -230,6 +230,12 @@ export default defineNuxtModule({
230
230
  route: '/api/_my-module/hello/:name',
231
231
  handler: resolver.resolve('./runtime/server/api/hello/[name].get'),
232
232
  })
233
+
234
+ // Or using a catch all route
235
+ addServerHandler({
236
+ route: '/api/_my-module/files/**:path',
237
+ handler: resolver.resolve('./runtime/server/api/files/[...path].get'),
238
+ })
233
239
  },
234
240
  })
235
241
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/docs-nightly",
3
- "version": "4.3.0-29481269.0645678f",
3
+ "version": "4.3.0-29481280.f3d5bc5f",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/nuxt/nuxt.git",