问答详情
源自:3-1 webpack打包和demo编写

output filename not configured

output filename not configured   module.exports = {
   entry :{
       animation : './src/animation.js'
   },
   output:{
       path : __dirname + './build',
       filename : '[name].js',
       library : 'animation',
       libraryTarget : 'umd'

   }
};

提问者:慕粉15711172269 2016-11-17 10:07

个回答

  • qq_夏天的回忆_0
    2017-03-23 12:04:49

         path : __dirname + './build',这里写错了,应该是这样的:path: __dirname+"/build",