buildCSS: true / false whether to build CSS or leave them as separate file requests with the plugin running in production. Defaults to true.
separateCSS: true / false whether to build a CSS file at the same output name as the bundle itself to be included with a link tag. Defaults to false.
This way jspm bundle app --inject will naturally inline the CSS in with the bundle and have everything load from one file, with the above two options to alter the behaviour.
Currently works against SystemJS builder master.
Uses the SystemJS configuration options:
buildCSS
: true / false whether to build CSS or leave them as separate file requests with the plugin running in production. Defaults to true.separateCSS
: true / false whether to build a CSS file at the same output name as the bundle itself to be included with a link tag. Defaults to false.This way
jspm bundle app --inject
will naturally inline the CSS in with the bundle and have everything load from one file, with the above two options to alter the behaviour.