You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/webpack.config.js

17 lines
339 B
JavaScript

const config = {
mode: 'production',
entry: {
development: './hydro/development.js',
install: './hydro/install.js',
uninstall: './hydro/uninstall.js'
},
output: {
filename: '[name].js',
path: __dirname + '/dist'
},
target: 'node',
module: {}
};
module.exports = config;