Vue2.0开发之——webpack基础-项目运行显示cannot get(04)

一 错误现象

二 错误原因


打包路径问题,无法找到

三 解决办法

3.1 设置contentBase

1
2
3
4
5
6
devServer:{
open:true,
host:'localhost',
port:8080,
contentBase: './dist'
}

可能出现的问题(这个属性在新版的webpack-dev-server中被移除了, 取而代之的是devServer.static)

3.2 devServer.static

1
2
3
4
5
6
7
8
devServer:{
open:true,
host:'localhost',
port:8080,
static: {
directory: path.join(__dirname, './')
},
}