webpack.config.js 359 B

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