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

12 lines
206 B

1 year ago
  1. const {resolve} = require('path');
  2. module.exports = {
  3. entry: [
  4. './md5.js'
  5. ],
  6. output: {
  7. path: resolve('./dist'),
  8. filename: 'md5.min.js',
  9. libraryTarget: "var",
  10. library: "MD5"
  11. }
  12. };