Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions part1/example1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ The things that are bundled are only the things that you explicitly required acr

As you probably noticed, I did something strange in the above example. I `required` a css file in a javascript file.

The really cool, and interesting thing about webpack is that you can `require` more than just
The really cool and interesting thing about webpack is that you can `require` more than just
javascript files.

There is this thing in webpack called a loader. Using these loaders, you can
Expand All @@ -81,6 +81,6 @@ For example in the diagram above I had
require('./styles.css')
```

If I include [the css-loader](https://github.com/webpack/css-loader) in my webpack config, this is not only perfectly valid, but also will actually apply the CSS to my page.
Including the [the css-loader](https://github.com/webpack/css-loader) in my webpack config is not only perfectly valid, but it will also actually apply the CSS to my page.
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This changes the meaning of the sentence. Also it says the the now.


This is just a single example of the many loaders you can use with webpack.