I'm running an ember cli app. I'm trying to install ember-model since it suits my api better than ember data; however, I keep running into problems.
The console inspector says that ember-model is installed but gives me the error of it can't find the module ember-model:
DEBUG: -------------------------------
ember.debug.js:5197DEBUG: Ember : 1.11.1
ember.debug.js:5197DEBUG: jQuery : 2.1.3
ember.debug.js:5197DEBUG: Ember Simple Auth : 0.7.3
ember.debug.js:5197DEBUG: Ember Model : 0.0.14
ember.debug.js:5197DEBUG: -------------------------------
home:24 [Report Only] Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'self' 'unsafe-eval' localhost:35729 0.0.0.0:35729". Either the 'unsafe-inline' keyword, a hash ('sha256-dBUwLbnABTnfa7no4FIMYM3DjtgGo_MdnLBNX10mFLg='), or a nonce ('nonce-...') is required to enable inline execution.
VM1973:81 Ember Inspector Active
loader.js:110Uncaught Error: Could not find module `ember-model` imported from `task-app/models/address-book/home`
as you can see ember model is installed and using version 0.0.14. Why could this error be happening?