Update build chain

This commit is contained in:
2019-11-05 11:07:20 +01:00
parent f48412b234
commit a7a7ee71c9
7 changed files with 4112 additions and 50 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: 'fold-entity-row.js',
path: path.resolve(__dirname)
}
};