Reputation: 2105
I am new to Ember.js and am working on an app with ember-cli-simple-auth-devise. It's working just fine in production, but when I deploy to production I get the following errors in console:
Uncaught TypeError: undefined is not a function vendor-dcea5bee9241c862bf2e30c2d2760f2e.js:15
Uncaught Error: Could not find module simple-auth-devise/initializer
This is a gist of my conf/environment.js [https://gist.github.com/gordonbisnor/b65f192392029fe703a1]
Not sure what other code might be relevant to include for reference, but would be happy to create gists, etc.
Wondering if anybody has an idea what could cause this to be working in development but not production.
Upvotes: 1
Views: 323
Reputation: 2105
The solution turned out to be removing ember-cli-bootstrap, see this Githuib issue in ember-cli and this Github issue in bootstrap-for-ember.
Upvotes: 0