feat: webpack 5 part 1

This commit is contained in:
Barış Soner Uşaklı
2022-02-14 21:35:33 -05:00
parent 4043f1791d
commit a1a1e8da18
53 changed files with 2550 additions and 2308 deletions

9
webpack.dev.js Normal file
View File

@@ -0,0 +1,9 @@
'use strict';
const { merge } = require('webpack-merge');
const common = require('./webpack.common');
module.exports = merge(common, {
mode: 'development',
// devtool: 'inline-source-map',
});