I'm using yeoman's angular-fullstack generator with default parameters.
I would like to use ckeditor with https://github.com/lemonde/angular-ckeditor , so I extended my bower.json with the following lines:
"ckeditor": "#full/4.4.7", "angular-ckeditor": "~0.4.2"
It works well in development mode ( grunt serve
), but it fails in production ( grunt serve:dist
). It tries to load /config.js
and /skins/moono/editor_gecko.css
and the language file dynamically, but it fails.
Have anybody idea how to solve it?