mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
chore: webpack: migrate to ESM
This commit is contained in:
parent
e178321be9
commit
8de9bd0847
8 changed files with 30 additions and 52 deletions
10
webpack.config.mjs
Normal file
10
webpack.config.mjs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import {merge} from 'webpack-merge';
|
||||
import * as htmlConfig from './.webpack/html.mjs';
|
||||
import cssConfig from './.webpack/css.mjs';
|
||||
import jsConfig from './.webpack/js.mjs';
|
||||
|
||||
export default merge([
|
||||
jsConfig,
|
||||
htmlConfig,
|
||||
cssConfig,
|
||||
]);
|
||||
Loading…
Add table
Add a link
Reference in a new issue