UNPKG

rollup-plugin-sass

Version:
12 lines 374 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.textContent = css; document.head.appendChild(style); return css; } //# sourceMappingURL=insertStyle.js.map