vue项目 打包错误
Refused to apply style from 'http://localhost:1291/css/app.cb7fc8a9.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
解决方案参考
配置相对路径
module.exports = {
// 基本路径
publicPath:"./", // 可以设置成相对路径,这样所有的资源都会被链接为相对路径,打出来的包可以被部署在任意路径
outputDir:"dist", //打包时生成的生产环境构建文件的目录
assetsDir: 'public', // 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录
/*devServer: {
proxy: 'http://localhost:8080'
}*/
}
image.png
总结:
感谢 打包路径是绝对路径,改了之后只有tabbar显示,后来百度了下说让路由改成hash模式,成了 ,不知道为啥history 不行
image.png
网友评论