How to disable deprecation warnings in Ember.js?

前端 未结 6 1306
心在旅途
心在旅途 2021-01-08 01:09

I\'ve written up an application that uses Ember Data. It\'s passing all it\'s tests and running as expected, however, something is causing a repeated deprecation warning to

6条回答
  •  再見小時候
    2021-01-08 02:02

    You can just do Ember.deprecate = function(){} in your application.js file and that should disable ember deprecation warnings.

提交回复
热议问题