@docbox-nz/hapi-gateway 0.1.0 → 0.2.1
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.
- package/README.md +1 -1
- package/dist/index.node.cjs +17591 -15217
- package/dist/index.node.cjs.map +1 -1
- package/dist/index.node.esm.js +17595 -15221
- package/dist/index.node.esm.js.map +1 -1
- package/dist/options.d.ts +6 -0
- package/package.json +54 -55
- package/src/index.ts +16 -3
- package/src/options.ts +7 -0
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ server.register({
|
|
|
68
68
|
});
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
-
##
|
|
71
|
+
## Custom Routing Setup
|
|
72
72
|
|
|
73
73
|
If you have a more complex routing setup for your hapi app, you can use the `createDocboxRoutes` function to create a docbox setup and obtain a list of routes that you can manually add using `server.route`
|
|
74
74
|
|