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'
? ?}
};
2017-03-23
? ?? path : __dirname + './build',這里寫錯了,應該是這樣的:path: __dirname+"/build",