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
You can also specify the absolute path to your custom `getLocalIdent` function to generate classname based on a different schema. This requires `webpack >= 2.2.1` (it supports functions in the `options` object).
> :information_source: For prerendering with extract-text-webpack-plugin you should use `css-loader/locals` instead of `style-loader!css-loader`**in the prerendering bundle**. It doesn't embed CSS but only exports the identifier mappings.
276
241
277
242
#### `Composing`
278
243
@@ -339,6 +304,44 @@ To import from multiple modules use multiple `composes:` rules.
339
304
}
340
305
```
341
306
307
+
### `localIdentName`
308
+
309
+
You can configure the generated ident with the `localIdentName` query parameter. See [loader-utils's documentation](https://github.com/webpack/loader-utils#interpolatename) for more information on options.
You can also specify the absolute path to your custom `getLocalIdent` function to generate classname based on a different schema. This requires `webpack >= 2.2.1` (it supports functions in the `options` object).
> ℹ️ For prerendering with extract-text-webpack-plugin you should use `css-loader/locals` instead of `style-loader!css-loader`**in the prerendering bundle**. It doesn't embed CSS but only exports the identifier mappings.
344
+
342
345
### `minimize`
343
346
344
347
By default the css-loader minimizes the css if specified by the module system.
0 commit comments