From 0fef277fad983ad477713c9e527380512f0629dd Mon Sep 17 00:00:00 2001 From: Even Stensberg Date: Sat, 29 Nov 2025 23:39:22 +0100 Subject: [PATCH] fix(output): remove copy button for now --- src/content/concepts/output.mdx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/content/concepts/output.mdx b/src/content/concepts/output.mdx index ef87d4af7ba4..20053247a762 100644 --- a/src/content/concepts/output.mdx +++ b/src/content/concepts/output.mdx @@ -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. @@ -19,8 +19,6 @@ The minimum requirement for the `output` property in your webpack configuration **webpack.config.js** - - ```javascript module.exports = { output: { @@ -29,8 +27,6 @@ module.exports = { }; ``` - - This configuration would output a single `bundle.js` file into the `dist` directory. ## Multiple Entry Points