File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,14 @@ import CssMinimizerPlugin from 'css-minimizer-webpack-plugin';
55import LicenseCheckerWebpackPlugin from 'license-checker-webpack-plugin' ;
66import MiniCssExtractPlugin from 'mini-css-extract-plugin' ;
77import MonacoWebpackPlugin from 'monaco-editor-webpack-plugin' ;
8- import { VueLoaderPlugin } from 'vue-loader' ;
9- import { ESBuildMinifyPlugin } from 'esbuild-loader' ;
8+ import VueLoader from 'vue-loader' ;
9+ import EsBuildLoader from 'esbuild-loader' ;
1010import { resolve , parse , dirname } from 'path' ;
1111import webpack from 'webpack' ;
1212import { fileURLToPath } from 'url' ;
1313
14+ const { VueLoaderPlugin} = VueLoader ;
15+ const { ESBuildMinifyPlugin} = EsBuildLoader ;
1416const __dirname = dirname ( fileURLToPath ( import . meta. url ) ) ;
1517const { SourceMapDevToolPlugin} = webpack ;
1618const glob = ( pattern ) => fastGlob . sync ( pattern , { cwd : __dirname , absolute : true } ) ;
You can’t perform that action at this time.
0 commit comments