Skip to content

Commit 6b5fddd

Browse files
wrapped output usage example with CodeBlockWithCopy
1 parent d1b645e commit 6b5fddd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/content/concepts/output.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,17 @@ The minimum requirement for the `output` property in your webpack configuration
1717

1818
**webpack.config.js**
1919

20+
<CodeBlockWithCopy>
21+
2022
```javascript
2123
module.exports = {
2224
output: {
2325
filename: 'bundle.js',
2426
},
2527
};
2628
```
29+
30+
</CodeBlockWithCopy>
2731

2832
This configuration would output a single `bundle.js` file into the `dist` directory.
2933

0 commit comments

Comments
 (0)