问答详情
源自:2-2 webpack配置的 entry 和 output new

ERROR in chunk a [entry] [bundle].js Conflict: Multiple assets emit to the same filename [bundle].js

由于版本问题,这里要这样写 module.exports = {    entry:{        main:'./src/script/main.js',        a:'./src/script/a.js'    },    output:{        path: __dirname + '/dist/js',        filename:'[name].js'    //视频中的bundle要改成这样    } }

提问者:qq_hypocrite_14118132 2017-06-05 15:58

个回答

  • 精慕门8701234
    2017-06-05 17:36:29

    对的 你的应该是2X版本了