比如: 页面地址 http://44.96.85.279:8090/maneger/companyTor
正确的静态文件地址:http://44.96.85.279:8090/static/css/app.b0ed542d28a560b4845c1eea1ecb0575.css
浏览器报错:
resource interpreted as Stylesheet but transferred with MIME type text/html: "http://44.96.85.279:8090/maneger/static/css/app.b0ed542d28a560b4845c1eea1ecb0575.css".
别用相对路径了,用绝对路径好了
config/index.js 里面设置assetsPublicPath: '/'
webpack.conf.js里面
output: {
publicPath: config.build.assetsPublicPath
}
供参考