You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* By default, the style-loader appends <style>/<link> elements to the end of the style target, which is the <head> tag of the page unless specified by insert.
234
+
* By default, style-loader appends <style>/<link> elements to the end of the style target,
235
+
* which is the <head> tag of the page unless specified by insert.
235
236
* This will cause CSS created by the loader to take priority over CSS already present in the target.
236
237
* You can use other values if the standard behavior is not suitable for you, but we do not recommend doing this.
238
+
* If you target an iframe, make sure you have sufficient access rights.
239
+
*
240
+
* Supports:
241
+
* - a CSS selector where styles are injected
242
+
* - an absolute path to a custom insert module
237
243
*
238
244
* @default 'head'
239
245
*/
240
-
insert?:
241
-
|LiteralUnion<'head'|'body',string>
242
-
|((element: HTMLElement)=>void);
246
+
insert?: LiteralUnion<'head'|'body',string>;
243
247
/**
244
-
* Allows to setup absolute path to custom function that allows to override default behavior styleTagTransform.
248
+
* Allows to setup an absolute path to a custom module that overrides
0 commit comments