Good Day
I’m getting this warning message from bluebird. It seems like it is originating from the aurelia framework. Is there a way to disable these warnings?
Warning: a promise was rejected with a non-error: [object Object]
at _buildNavigationPlan (http://localhost:9001/scripts/vendor-bundle.js:17406:22)
I had a look at https://github.com/aurelia/skeleton-navigation/issues/282 and added this to my main.ts, but the warning is still being displayed:
import Promise = require('bluebird');
Promise.config({
longStackTraces: false,
warnings: false
});
Any help appreciated