UNPKG

@mozaic-ds/postcss-prepend

Version:

PostCSS plugin that adds content to the beginning of your CSS/SCSS file.

11 lines (9 loc) 169 B
module.exports = (opts = {}) => { return { postcssPlugin: 'postcss-prepend', Once(root) { root.prepend(opts) }, } } module.exports.postcss = true