Skip to content
Merged
Changes from all commits
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
7 changes: 5 additions & 2 deletions src/content/concepts/loaders.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ There are three ways to use loaders in your application:
### Configuration

[`module.rules`](/configuration/module/#module-rules) allows you to specify several loaders within your webpack configuration.
This is a concise way to display loaders, and helps to maintain clean code. It also offers you a full overview of each respective loader:
This is a concise way to display loaders, and helps to maintain clean code. It also offers you a full overview of each respective loader.

Loaders are evaluated/executed from right to left. In the example below execution starts with sass-loader, continues with css-loader and finally ends with style-loader. See ["Loader Features"](/concepts/loaders/#loader-features) for more information about loaders order.

```js-with-links-with-details
module.exports = {
Expand All @@ -67,7 +69,8 @@ module.exports = {
options: {
modules: true
}
}
},
{ loader: ['sass-loader'](/loaders/sass-loader) }
]
}
]
Expand Down