How to disable deprecation warnings in Ember.js?

前端 未结 6 1344
心在旅途
心在旅途 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 01:54

    It's always good to consider deprecations, but if you want to just turn them off entirely add the following 2 lines to your main app.js file.

    Ember.deprecate = function(){};
    Ember.warn = function(i){};
    

提交回复
热议问题