Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions src/content/concepts/output.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ contributors:
- EugeneHlushko
---

import CodeBlockWithCopy from '../../components/CodeBlockWithCopy/CodeBlockWithCopy'
import CodeBlockWithCopy from '../../components/CodeBlockWithCopy/CodeBlockWithCopy';

Configuring the `output` configuration options tells webpack how to write the compiled files to disk. Note that, while there can be multiple `entry` points, only one `output` configuration is specified.

Expand All @@ -19,8 +19,6 @@ The minimum requirement for the `output` property in your webpack configuration

**webpack.config.js**

<CodeBlockWithCopy>

```javascript
module.exports = {
output: {
Expand All @@ -29,8 +27,6 @@ module.exports = {
};
```

</CodeBlockWithCopy>

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

## Multiple Entry Points
Expand Down
Loading