In app.js, if we configure the LoopBack app as follows: ``` js app.use(require('cors')); ``` All requests will hang. Please note the correct usage of cors is `app.use(require('cors')());` The issue was discovered by @Schoonology
In app.js, if we configure the LoopBack app as follows:
All requests will hang.
Please note the correct usage of cors is
app.use(require('cors')());The issue was discovered by @Schoonology