Skip to content

Commit e478a5c

Browse files
fix(output): remove copy button for now (#7719)
1 parent 3cb13c0 commit e478a5c

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/content/concepts/output.mdx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ contributors:
99
- EugeneHlushko
1010
---
1111

12-
import CodeBlockWithCopy from '../../components/CodeBlockWithCopy/CodeBlockWithCopy'
12+
import CodeBlockWithCopy from '../../components/CodeBlockWithCopy/CodeBlockWithCopy';
1313

1414
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.
1515

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

2020
**webpack.config.js**
2121

22-
<CodeBlockWithCopy>
23-
2422
```javascript
2523
module.exports = {
2624
output: {
@@ -29,8 +27,6 @@ module.exports = {
2927
};
3028
```
3129

32-
</CodeBlockWithCopy>
33-
3430
This configuration would output a single `bundle.js` file into the `dist` directory.
3531

3632
## Multiple Entry Points

0 commit comments

Comments
 (0)