Update build chain

This commit is contained in:
2019-11-05 10:37:00 +01:00
parent eaed9cd8d9
commit 8038cab85c
8 changed files with 4143 additions and 265 deletions

10
webpack.config.js Normal file
View File

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