不知道哪里出错;求帮助
修改配置信息以后css文件并没有编译。总是提示bundle。js没有找到资源。报错:index.html:11 GET file:///E:/aawebpack/bundle.js net::ERR_FILE_NOT_FOUND
以下是我修改的配置文件,请问这到底是怎么回事?
var path=require("path");
module.exports={
entry:"./src/js/app.js",
output:{
path:__dirname+"/dist",
filename:"bundle.js"
},
module:{
loaders:[
{test:/\.css$/,loader:"style-loader!css-loader"}
]
}
}
module.exports = {
entry: './src/script/main.js',
output: {
path:__dirname+'/dist/js',
filename: 'bundle.js'
}
}
const path = require('path') //将相对路径转换为绝对路径
module.exports = {
entry: './src/script/main.js', // 入口文件
output: {
path: path.resolve(__dirname,'dist/js'), // 打包后文件路径,当前文件夹,子文件夹
filename: 'bundle.js', // 文件名称
}
}
把path值中的点去掉
或者写成这样:path:__dirname+'/dist/js'