提示 We're sorry but vue project doesn't work properly without JavaScript enabled?

部署生产环境后,点击下载不同端口下的文件,接口提示
We're sorry but vue project doesn't work properly without JavaScript enabled, Please enable it to continue


回答:

一般来说 index.html 文件里面就是这段文本内容。在接口请求里面就会直接展示这段文字内容。

<body>

<noscript>

<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>

</noscript>

<div id="app"></div>

<!-- built files will be auto injected -->

</body>

如果是一些其他的请求(非 index.html 文件的请求)都是这样的文本,需要考虑你的 HTTP 服务是否配置正确。
当然有些情况下 publicPath 配置错误也会有类似的问题。具体情况你得把你的控制台报错贴出来才可以知道。

以上是 提示 We&#x27;re sorry but vue project doesn&#x27;t work properly without JavaScript enabled? 的全部内容, 来源链接: utcz.com/p/933689.html

回到顶部