Skip to content

Commit de1e633

Browse files
chore: correct link path (#1645)
1 parent 563ad63 commit de1e633

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1852,7 +1852,7 @@ import "./styles.css";
18521852

18531853
> [!WARNING]
18541854
>
1855-
> You should not use [`style-loader`](https://github.com/webpack-contrib/style-loader) or [`mini-css-extract-plugin`](https://github.com/webpack-contrib/mini-css-extract-plugin) with this value.
1855+
> You should not use [`style-loader`](https://github.com/webpack/style-loader) or [`mini-css-extract-plugin`](https://github.com/webpack/mini-css-extract-plugin) with this value.
18561856
>
18571857
> The `esModule` option should be enabled if you want to use it with [`CSS modules`](https://github.com/webpack/css-loader#modules). By default for locals [named export](https://github.com/webpack/css-loader#namedexport) will be used.
18581858
@@ -1889,7 +1889,7 @@ console.log(sheet);
18891889
18901890
> [!WARNING]
18911891
>
1892-
> You don't need [`style-loader`](https://github.com/webpack-contrib/style-loader) anymore, please remove it.
1892+
> You don't need [`style-loader`](https://github.com/webpack/style-loader) anymore, please remove it.
18931893
18941894
> [!WARNING]
18951895
>
@@ -2004,9 +2004,9 @@ module.exports = {
20042004

20052005
For `production` builds, it's recommended to extract the CSS from your bundle being able to use parallel loading of CSS/JS resources later on.
20062006

2007-
This can be achieved by using the [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin), because it creates separate css files.
2007+
This can be achieved by using the [mini-css-extract-plugin](https://github.com/webpack/mini-css-extract-plugin), because it creates separate css files.
20082008

2009-
For `development` mode (including `webpack-dev-server`) you can use [style-loader](https://github.com/webpack-contrib/style-loader), because it injects CSS into the DOM using multiple `<style></style>` and works faster.
2009+
For `development` mode (including `webpack-dev-server`) you can use [style-loader](https://github.com/webpack/style-loader), because it injects CSS into the DOM using multiple `<style></style>` and works faster.
20102010

20112011
> [!NOTE]
20122012
>
@@ -2123,7 +2123,7 @@ module.exports = {
21232123

21242124
For production builds it's recommended to extract the CSS from your bundle to enable parallel loading of CSS/JS resources later on.
21252125

2126-
- This can be achieved by using the [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) to extract the CSS when running in production mode.
2126+
- This can be achieved by using the [mini-css-extract-plugin](https://github.com/webpack/mini-css-extract-plugin) to extract the CSS when running in production mode.
21272127

21282128
- As an alternative, if seeking better development performance and css outputs that mimic production. [extract-css-chunks-webpack-plugin](https://github.com/faceyspacey/extract-css-chunks-webpack-plugin) offers a hot module reload friendly, extended version of mini-css-extract-plugin. HMR real CSS files in dev, works like mini-css in non-dev.
21292129

0 commit comments

Comments
 (0)