chore: webpack: migrate to ESM

This commit is contained in:
coderiaser 2026-01-16 14:17:59 +02:00
parent e178321be9
commit 8de9bd0847
8 changed files with 30 additions and 52 deletions

10
webpack.config.mjs Normal file
View 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,
]);