File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -5,14 +5,16 @@ import CssMinimizerPlugin from 'css-minimizer-webpack-plugin';
5
5
import LicenseCheckerWebpackPlugin from 'license-checker-webpack-plugin' ;
6
6
import MiniCssExtractPlugin from 'mini-css-extract-plugin' ;
7
7
import 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' ;
10
10
import { resolve , parse , dirname } from 'path' ;
11
11
import webpack from 'webpack' ;
12
12
import { fileURLToPath } from 'url' ;
13
13
14
- const __dirname = dirname ( fileURLToPath ( import . meta. url ) ) ;
14
+ const { VueLoaderPlugin} = VueLoader ;
15
+ const { ESBuildMinifyPlugin} = EsBuildLoader ;
15
16
const { SourceMapDevToolPlugin} = webpack ;
17
+ const __dirname = dirname ( fileURLToPath ( import . meta. url ) ) ;
16
18
const glob = ( pattern ) => fastGlob . sync ( pattern , { cwd : __dirname , absolute : true } ) ;
17
19
18
20
const themes = { } ;
You can’t perform that action at this time.
0 commit comments