tarot2 / node_modules /md5 /webpack.config.js
biohazard333
Mensaje de commit
8775c1a
const {resolve} = require('path');
module.exports = {
entry: [
'./md5.js'
],
output: {
path: resolve('./dist'),
filename: 'md5.min.js',
libraryTarget: "var",
library: "MD5"
}
};