在 Atom 和 NodeJS 中面临有关实时服务器的问题

Facing problem regarding live-server in Atom and NodeJS

我想为我的网络应用程序设置一个实时环境。我正在使用 AngularJS 和 NodeJS (MEAN),我希望两者 运行 同时运行。我所做的是,我通过 npm 安装了 live-server 并通过

启动了服务器
live-server --`host=192.168.XX.XX --port=9999`

显示以下错误:

Refused to apply style from 'http://192.168.XX.XX:9999/main.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.

还尝试通过

在 public 中提供我的项目文件夹的路径
live-server --`host=192.168.XX.XX --port=9999` --open=public

但面临同样的错误。请帮忙!谢谢

首先我会检查脚本标签中的路径名是否有拼写错误。如果您的名称中有一个额外的 / 那么您将收到此错误。

其次,尝试缩小 css 文件。

这只是我放在 public 文件夹外的另一个 index.html 文件。 顺便说一下,一个解决方案对我有用。

将此 link 放在 HTML 的开头。

<base href="/" target="_blank">