Skip to content

Commit cd7b1d8

Browse files
committed
DOCS: Fix output example to use object.filename
1 parent c49803b commit cd7b1d8

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)