Skip to content

Commit 26e8179

Browse files
chore: correct link path (#572)
1 parent bec1977 commit 26e8179

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ module.exports = {
471471

472472
### Normal usage
473473

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.
475475

476476
**webpack.config.js**
477477

@@ -538,7 +538,7 @@ If you want to edit the original Less files inside Chrome, [there's a good blog
538538

539539
### In production
540540

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.
542542

543543
### Imports
544544

@@ -671,12 +671,12 @@ In production, on the other hand, it's not a good idea to apply your style sheet
671671
There are two possibilities to extract a style sheet from the bundle:
672672

673673
- [`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)
675675

676676
### CSS modules gotcha
677677

678678
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).
680680

681681
## Contributing
682682

0 commit comments

Comments
 (0)