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.
1 parent d1b645e commit 6b5fdddCopy full SHA for 6b5fddd
src/content/concepts/output.mdx
@@ -17,13 +17,17 @@ The minimum requirement for the `output` property in your webpack configuration
17
18
**webpack.config.js**
19
20
+<CodeBlockWithCopy>
21
+
22
```javascript
23
module.exports = {
24
output: {
25
filename: 'bundle.js',
26
},
27
};
28
```
29
30
+</CodeBlockWithCopy>
31
32
This configuration would output a single `bundle.js` file into the `dist` directory.
33
0 commit comments