output filename not configured

来源:3-1 webpack打包和demo编写

慕粉15711172269

2016-11-17 10:07

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

   }
};

写回答 关注

1回答

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

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

原生 JS 实现帧动画库

了解如何用原生JS实现酷炫的帧动画,吸引他她的注意

47184 学习 · 92 问题

查看课程

相似问题