UNPKG

rollup-plugin-sass

Version:
13 lines 416 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = insertStyle; function insertStyle(css) { if (!css || typeof window === 'undefined') return; const style = document.createElement('style'); style.setAttribute('type', 'text/css'); style.innerHTML = css; document.head.appendChild(style); return css; } //# sourceMappingURL=insertStyle.js.map