We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice if developer can control way how baggage-loader adds injected files:
baggage-loader
return inject + source;
return source + inject;
The text was updated successfully, but these errors were encountered:
In some cases need to inject baggage files after the source, because these files depend on source.
baggage
source
{ test: /angular-material\/modules\/js\/.*\.js$/, loader: 'baggage?[file].css&[file]-default-theme.css&default-theme.js&[file]-default-theme.js' }
require('angular-material/modules/js/core/core');
default-theme.js or [file]-default-theme.js should be added after angular-material/modules/js/core/core.js
default-theme.js
[file]-default-theme.js
angular-material/modules/js/core/core.js
Sorry, something went wrong.
#11
No branches or pull requests
It would be nice if developer can control way how
baggage-loader
adds injected files:return inject + source;
;return source + inject;
;The text was updated successfully, but these errors were encountered: