Firstly, I have the following star catalogs installed:
application.js
application.css
*= require_self
*= require_tree .
However a simple test file in the provider
console.log('I\'ve been loaded,baby!');
not loading with asterisks? If I translate it to app / assets / js, it works then, but not at the provider. What directives do I need to configure for this to work? Are they required individually?
Do I need to precompile even in development?
In addition, there is vendor
no catalog images
. Many third-party scripts have demos with them. I would prefer them in vendor/images
rather than app/assets/images
. Can this be customized?
source
share