We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca9879d commit adae521Copy full SHA for adae521
runtime/inject-css.js
@@ -32,6 +32,8 @@ export default function (css, options) {
32
styleTag.setAttribute(k[i], options.attributes[k[i]]);
33
}
34
35
+ if (typeof __webpack_nonce__ !== "undefined")
36
+ styleTag.setAttribute("nonce", nonce);
37
var pos = position === "prepend" ? "afterbegin" : "beforeend";
38
container.insertAdjacentElement(pos, styleTag);
39
return styleTag;
0 commit comments