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: content/guides/code-splitting-css.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ webpack can help with this problem by bundling the CSS separately using [extract
11
11
12
12
## Using `css-loader`
13
13
14
-
To import css into your JavaScript code like [any other module](concept/modules), you will have to use the [css-loader](https://github.com/webpack/css-loader)
14
+
To import css into your JavaScript code like [any other module](/concepts/modules), you will have to use the [css-loader](https://github.com/webpack/css-loader).
15
15
The webpack config with `css-loader` will look like
16
16
17
17
```javascript
@@ -55,8 +55,8 @@ loader: ExtractTextPlugin.extract('css-loader?sourceMap') //Can be used without
0 commit comments