matches request urls when basepath in api-gateway and custom domain mismatch
npm install @turinggroup/serverless-express-custom-domain-middlewareinstall
```
npm install @turinggroup/serverless-express-custom-domain-middleware`
usage
const customDomainReroute = require('@turinggroup/serverless-express-custom-domain-middleware').customDomainReroute;
app.use(customDomainReroute);
`
to call custom function when path is rerouted
`
const customDomainReroute = require('@turinggroup/serverless-express-custom-domain-middleware');
const rerouter = customDomainReroute.setup({
onRouted: (originalPath, routedPath) => {
// do something here
}
});
app.use(rerouter);
``