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
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -471,7 +471,7 @@ module.exports = {
471
471
472
472
### Normal usage
473
473
474
-
Chain the `less-loader` with [`css-loader`](https://github.com/webpack-contrib/css-loader) and [`style-loader`](https://github.com/webpack-contrib/style-loader) to immediately apply all styles to the DOM.
474
+
Chain the `less-loader` with [`css-loader`](https://github.com/webpack/css-loader) and [`style-loader`](https://github.com/webpack/style-loader) to immediately apply all styles to the DOM.
475
475
476
476
**webpack.config.js**
477
477
@@ -538,7 +538,7 @@ If you want to edit the original Less files inside Chrome, [there's a good blog
538
538
539
539
### In production
540
540
541
-
Usually, it's recommended to extract the style sheets into a dedicated file in production using the [MiniCssExtractPlugin](https://github.com/webpack-contrib/mini-css-extract-plugin). This way your styles are not dependent on JavaScript, improving performance and cacheability.
541
+
Usually, it's recommended to extract the style sheets into a dedicated file in production using the [MiniCssExtractPlugin](https://github.com/webpack/mini-css-extract-plugin). This way your styles are not dependent on JavaScript, improving performance and cacheability.
542
542
543
543
### Imports
544
544
@@ -671,12 +671,12 @@ In production, on the other hand, it's not a good idea to apply your style sheet
671
671
There are two possibilities to extract a style sheet from the bundle:
672
672
673
673
-[`extract-loader`](https://github.com/peerigon/extract-loader) (simpler, but specialized on the css-loader's output)
674
-
-[`MiniCssExtractPlugin`](https://github.com/webpack-contrib/mini-css-extract-plugin) (more complex, but works in all use-cases)
674
+
-[`MiniCssExtractPlugin`](https://github.com/webpack/mini-css-extract-plugin) (more complex, but works in all use-cases)
675
675
676
676
### CSS modules gotcha
677
677
678
678
There is a known problem when using Less with [CSS modules](https://github.com/css-modules/css-modules) regarding relative file paths in `url(...)` statements.
679
-
[See this issue for an explanation](https://github.com/webpack-contrib/less-loader/issues/109#issuecomment-253797335).
679
+
[See this issue for an explanation](https://github.com/webpack/less-loader/issues/109#issuecomment-253797335).
0 commit comments