为什么在构建时,我的Angular项目会在index.html中附加链接和脚本?

时间:2019-03-05 03:35:03

标签: angular angular6 angular-cli angular7

最近我一直在Angular Material项目中安装软件包

惊人的时间选择器,自举时间选择器等

在尝试了它们但对我的Angular项目不起作用之后,我将其卸载。现在,我正在使用Material Ngx时间选择器。在本地和构建期间一切正常。但是项目无法在部署环境中运行,我遇到以下错误

Resource interpreted as Stylesheet but transferred with MIME type text/html: "http://52.198.226.3:3000/styles.939548ba4f5da0a64386.css".
runtime.1e53f64d47e84fba89ef.js:1 Uncaught SyntaxError: Unexpected token <
polyfills.011c9e0c53dcff7183b4.js:1 Uncaught SyntaxError: Unexpected token <
main.dc0fd4587ec9ba4ad746.js:1 Uncaught SyntaxError: Unexpected token <

我在index.html中发现有一个<link>和一个<script>附加在我的源代码编辑器中,但是没有。这些是以下内容:

<link rel="stylesheet" href="styles.939548ba4f5da0a64386.css">
<script type="text/javascript" src="runtime.1e53f64d47e84fba89ef.js"></script>
<script type="text/javascript" src="polyfills.011c9e0c53dcff7183b4.js"></script>
<script type="text/javascript" src="main.dc0fd4587ec9ba4ad746.js"></script>

这些基本上是在控制台中发现的错误,但我没有手动添加。如何删除这些?

0 个答案:

没有答案