summaryrefslogtreecommitdiff
path: root/webpack.config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'webpack.config.ts')
-rw-r--r--webpack.config.ts3
1 files changed, 0 insertions, 3 deletions
diff --git a/webpack.config.ts b/webpack.config.ts
index 75c7a37d..aae77a76 100644
--- a/webpack.config.ts
+++ b/webpack.config.ts
@@ -6,7 +6,6 @@ import {readFileSync} from 'fs';
import regexJoin from 'regex-join';
import SizePlugin from 'size-plugin';
import TerserPlugin from 'terser-webpack-plugin';
-import {ESBuildPlugin} from 'esbuild-loader';
import CopyWebpackPlugin from 'copy-webpack-plugin';
import MiniCssExtractPlugin from 'mini-css-extract-plugin';
import webpack, {Configuration} from 'webpack';
@@ -96,7 +95,6 @@ const config: Configuration = {
]
},
plugins: [
- new ESBuildPlugin(),
new webpack.DefinePlugin({
// Passing `true` as the second argument makes these values dynamic — so every file change will update their value.
__features__: webpack.DefinePlugin.runtimeValue(
@@ -116,7 +114,6 @@ const config: Configuration = {
),
__filebasename: webpack.DefinePlugin.runtimeValue(
- // @ts-expect-error
info => JSON.stringify(path.parse(info.module.resource).name)
)
}),