项目运行正常,浏览器访问不了项目 1. GET [http://localhost:8080/js/chunk-vendors.js](https://link.segmentfault.com/?enc=i1yXzn0JVrMSsoa3Pl50Ag%3D%3D.3gqyY2RK1LSipefVpJfUKGKz6fZRV5FwN%2Bamk%2Bp2RVtOxJp8yP608eKLhnioJa9Z) net::ERR_ABORTED 404 (Not Found) 2. Refused to execute script from '[http://localhost:8080/js/chunk-vendors.js](https://link.segmentfault.com/?enc=RXnWxbMKqhqiyW0QEUlNcw%3D%3D.IXWKjPLYg%2B%2BHX014S1ZfvBExCKXE8TURrzQd%2Fx7xfHhjphi9pLG5mgfrgiy5MNTU)' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.    vue.config.js const CompressionWebpackPlugin = require('compression-webpack-plugin'); const { transformElementScss } = require('ele-admin/lib/utils/dynamic-theme'); module.exports = { productionSourceMap: false, configureWebpack: { performance: { maxAssetSize: 2000000, maxEntrypointSize: 2000000 } }, chainWebpack(config) { config.plugins.delete('prefetch'); if (process.env.NODE_ENV !== 'development') { // gzip 压缩 config.plugin('compressionPlugin').use( new CompressionWebpackPlugin({ test: /\.(js|css|html)$/, threshold: 10240 }) ); } }, css: { loaderOptions: { sass: { sassOptions: { outputStyle: 'expanded', importer: transformElementScss() } } } } }; 浏览器显示是404,但是新窗口打开能获取到  