Skip to content

Commit 964dc76

Browse files
authored
Merge pull request #632 from mikeerickson/docs-fix-output-example
DOCS: Fix output example to use object.filename
2 parents c49803b + cd7b1d8 commit 964dc76

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

content/concepts/output.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ To set the `output` property, you simply set the output value in your webpack co
1717

1818
```javascript
1919
const config = {
20-
output: 'bundle.js'
20+
output: {
21+
filename: 'bundle.js'
22+
}
2123
};
2224

2325
module.exports = config;

0 commit comments

Comments
 (0)