feature: cloudcmd: migrate to ESM

This commit is contained in:
coderiaser 2026-02-03 15:03:49 +02:00
parent e8a81c49ea
commit 4533a25c6f
184 changed files with 339 additions and 388 deletions

10
webpack.config.js Normal file
View file

@ -0,0 +1,10 @@
import {merge} from 'webpack-merge';
import * as htmlConfig from './.webpack/html.js';
import cssConfig from './.webpack/css.js';
import jsConfig from './.webpack/js.js';
export default merge([
jsConfig,
htmlConfig,
cssConfig,
]);