This plugin wraps esifycss.
npm install --save-dev rollup-plugin-embed-css
import embedCSS from 'rollup-plugin-embed-css';
export default {
input: '...',
plugins: [
embedCSS({/* Options */}),
],
output: {
format: '...',
file: '...',
},
};
You can pass all esifycss options except the include
option.
The rollup-plugin-embed-css project is licensed under the terms of the Apache 2.0 License.