We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a8ffce7 + 74ce274 commit a7e4a8cCopy full SHA for a7e4a8c
README.md
@@ -4,18 +4,19 @@ Extracts SourceMaps for source files that as added as `sourceMappingURL` comment
4
5
## Usage
6
7
-[Documentation: Using loaders](http://webpack.github.io/docs/using-loaders.html)
+[Documentation: Using loaders](https://webpack.js.org/concepts/#loaders)
8
9
10
-### example webpack config
+### Example webpack config
11
12
``` javascript
13
module.exports = {
14
module: {
15
- preLoaders: [
+ rules: [
16
{
17
test: /\.js$/,
18
- loader: "source-map-loader"
+ use: ["source-map-loader"],
19
+ enforce: "pre"
20
}
21
]
22
0 commit comments