怎么没有在jist/js目录下,自动生成bundle.js文件。在命令行运行webpack,一直运行报错。谢谢回答!!!!!
或者这样
module.exports = { entry : './src/script/main.js', //打包入口 output : { //打包后存放位置 path : __dirname + '/dist/js', //用__direname设置绝对路径 filename : 'bundle.js' } }
绝对路径问题
const path = require('path');
module.exports = {
entry: './src/script/main.js',
output: {
path: path.resolve('./dist/js'),
filename: 'bundle.js'
}
}
全局安装 npm install webpack -g 还有,path是绝对路径 你那种写法会报错的
没有正确安装webpack吧