Refused to apply style from 'http://localhost:1291/css/app.cb7fc8a9.css' because its MIME type ('...

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.

image.png

解决方案参考
配置相对路径


module.exports = {
    // 基本路径
    publicPath:"./",  // 可以设置成相对路径,这样所有的资源都会被链接为相对路径,打出来的包可以被部署在任意路径
    outputDir:"dist",  //打包时生成的生产环境构建文件的目录
    assetsDir: 'public',  // 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录
    /*devServer: {
        proxy: 'http://localhost:8080'
    }*/
}

https://blog.csdn.net/yys190418/article/details/107217457/?utm_medium=distribute.pc_relevant.none-task-blog-title-2&spm=1001.2101.3001.4242

image.png

总结:
感谢 打包路径是绝对路径,改了之后只有tabbar显示,后来百度了下说让路由改成hash模式,成了 ,不知道为啥history 不行


image.png

https://www.cnblogs.com/mmzuo-798/p/10871750.html

你可能感兴趣的:(Refused to apply style from 'http://localhost:1291/css/app.cb7fc8a9.css' because its MIME type ('...)