Update build chain

This commit is contained in:
2019-11-05 10:52:39 +01:00
parent d671cdbdfe
commit f674ff567b
9 changed files with 4113 additions and 49 deletions

10
webpack.config.js Normal file
View File

@@ -0,0 +1,10 @@
const path = require('path');
module.exports = {
entry: './src/main.js',
mode: 'production',
output: {
filename: 'card-mod.js',
path: path.resolve(__dirname)
}
};