Skip to content

Commit f81dd1e

Browse files
committed
Merge pull request ruanyf#30 from jigsawye/patch-1
typo
2 parents 119baed + 9ab5050 commit f81dd1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ After launching the server, `small.png` and `big.png` will have the following UR
353353

354354
## Demo06: CSS Module ([source](https://github.com/ruanyf/webpack-demos/tree/master/demo06))
355355

356-
`css-loader?modules` the query parameter modules) enables the [CSS Modules](https://github.com/css-modules/css-modules) spec.
356+
`css-loader?modules` (the query parameter modules) enables the [CSS Modules](https://github.com/css-modules/css-modules) spec.
357357

358358
It means your module's CSS is local scoped CSS by default. You can switch it off with `:global(...)` for selectors and/or rules. ([more info](https://css-modules.github.io/webpack-demo/))
359359

@@ -591,7 +591,7 @@ require.ensure(['./a'], function(require) {
591591
});
592592
```
593593

594-
`require.ensure` tells Webpack that `./a.js` should be separated from `bundle.js` and built into a single chunk file.
594+
`require.ensure` tells Webpack that `./a.js` should be separated from `bundle.js` and built into a single chunk file.
595595

596596
```javascript
597597
// a.js

0 commit comments

Comments
 (0)