Failed to load resource: net::ERR_FILE_NOT_FOUND或者vue dist文件下的index.html没显示

vue-cli  npm run dev 可以看到,但是通过dist文件下的index.html直接打开没显示,没看到  

知乎上:webpack.prod.conf.js 中output添加参数publicPath:'./'

具体:

在webpack.base.conf.js里

publicPath: process.env.NODE_ENV === 'production'

      ? './' +config.build.assetsPublicPath
      : './' + config.dev.assetsPublicPath

猜你喜欢

转载自www.cnblogs.com/guapi/p/9061876.html