Update build chain

This commit is contained in:
2019-11-05 12:48:52 +01:00
parent 2ee41c7d9e
commit 1dab4bd27f
6 changed files with 4054 additions and 46 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: 'slider-entity-row.js',
path: path.resolve(__dirname)
}
};