remove webpack config

This commit is contained in:
Holly Stubbs 2023-08-20 13:03:28 +01:00
parent 734cebb19e
commit b0f4423633
Signed by: tgpholly
GPG key ID: B8583C4B7D18119E

View file

@ -1,15 +0,0 @@
const path = require('path');
const nodeExternals = require('webpack-node-externals');
module.exports = {
target: 'node',
externals: [ nodeExternals() ],
entry: './build/Binato.js',
output: {
path: path.join(__dirname, 'bundle'),
filename: 'Binato.js',
},
optimization: {
minimize: true,
},
};