ember-admin
ember-admin copied to clipboard
Uncaught Error: Could not find module `ember-admin/router`
Followed the following steps but encountered an error. It looks like the router.js is missing.
Install
npm install ember-admin --save-dev
Usage
Add the admin routes to your router.js
import adminRouter from 'ember-admin/router';
Router.map(function() {
adminRouter(this);
});
Can you try moving to dependencies
instead of devDependencies
in your package.json
?
@rickyhurtado any luck?