ember-engines: Assertion Failed: Asset manifest does not list any available bundles.
I’ve created a standalone routable engine with ember-engines 0.4.0, ember-cli 2.10.0 and get this error if I call the engines index route (/things/).
Assertion Failed: Asset manifest does not list any available bundles.
Consumer App router.js:
this.mount('things', { as: 'things' });
Engine App routes.js:
this.route('index', { path: '/' });
The engine is ‘installed’ via a symlink in the node_modules/ dir of the consuming ember-cli app. (See here why).
Any idea?
About this issue
- Original URL
- State: closed
- Created 8 years ago
- Comments: 33 (10 by maintainers)
Looks like you’ve not added your engine as a dependency of your application in your applications
package.json.Try adding
"thingy-frontend": "*"to your applications devDependencies.@mike183 Thank you very much for you guidance! You helped us a lot 😃
You’re right. But it’s a companies product so I can’t simply upload it 😉
I’ll try to setup a dummy project with the same architecture tomorrow and upload it.