vue-cli打包之后无法运行index.html
程序员文章站
2022-03-06 13:56:27
...
webpack 4
打包之后的 dist 文件下面包含 static 文件和 index.html 文件,直接打开index.html文件为空白,控制台会有很多文件路径错误
解决:
build/util.js:
if (options.extract) {
return ExtractTextPlugin.extract({
use: loaders,
publicPath:'../../', //添加这句
fallback: 'vue-style-loader'
})
} else {
return ['vue-style-loader'].concat(loaders)
}
config/index.js :
将文件中的两个中的一个build下面的 assetsPublicPath: '/' 改成 './'
上一篇: WebPack配置及使用方法
下一篇: CUAD笔记
推荐阅读
-
详解webpack打包vue项目之后生成的dist文件该怎么启动运行
-
android中打包之后的APK闪退,stuidio直接运行可以
-
Oracle数据库新装之后出现的监听程序无法正常启动和运行(Oracle-12514)问题
-
浅谈在vue中用webpack打包之后运行文件的问题以及相关配置方法
-
vue-cli打包后本地运行dist文件中的index.html操作
-
angular build 之后,直接本地打开index.html运行
-
如何解决vue2.0 打包之后 打开index.html出现空白页
-
如何解决vue2.0 打包之后 打开index.html出现空白页
-
vue-cli4创建的项目打包之后,index.html打不开
-
vue文件打包之后打开index.html发现一片空白