Skip to content

Commit ba6572d

Browse files
committed
📝 better wording
1 parent 8d175e5 commit ba6572d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

part2/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,13 @@ and that's actually all you need to do.
106106

107107
## Webpack
108108

109-
We're going to use the same exact config as in [example 7 from part 1](https://github.com/AriaFallah/WebpackTutorial/tree/master/part1/example7), but add the
109+
We're going to use the same exact configs from [example 7 from part 1](https://github.com/AriaFallah/WebpackTutorial/tree/master/part1/example7), but add the
110110
functionality needed to use ES6.
111111

112112
Current configs:
113113

114-
dev config
115-
116114
```javascript
115+
// webpack.config.dev.js
117116
var path = require('path')
118117
var webpack = require('webpack')
119118
var HtmlWebpackPlugin = require('html-webpack-plugin')
@@ -148,9 +147,10 @@ module.exports = {
148147
}
149148
```
150149

151-
prod config
150+
and
152151

153152
```javascript
153+
// webpack.config.prod.js
154154
var path = require('path')
155155
var webpack = require('webpack')
156156
var HtmlWebpackPlugin = require('html-webpack-plugin')

0 commit comments

Comments
 (0)