webpack.config.js 386 B

1234567891011121314151617
  1. const path = require('path');
  2. // node写法
  3. module.exports = {
  4. mode:'production',
  5. entry:"./src/index.js",
  6. // entry: ['./src/a.js','./src/index.js']
  7. // entry: {
  8. // hi:'./src/a.js',
  9. // hello:'./src/index.js'
  10. // }
  11. output:{
  12. filename: '[name]-[id]-[hash].js',
  13. path: path.resolve(__dirname,'dist'),
  14. clean: true,
  15. }
  16. }