Angular: 允许加载独立的 html 文件

Angular: Allow standalone html file to be loaded

我正在使用 oidc-client.js 静默续订功能,需要加载独立的 html 文件才能完成续订过程。

现在每个 url 开发服务器主机 (f.e。http://localhost:4200/silent-renew.html) 都被 angular 路由器连接并相应地处理到路由 table,所以我一直在默认页面而不是静默更新页面结束。

有没有办法告诉 angular 不处理具体的 url,以便可以加载纯 html 页面?

花了我一段时间,但最终解决方案似乎很简单 - html 文件应该作为资产添加到 .angular-cli.json:

"assets": [
    "assets",
    "favicon.ico",
    "silent-renew.html"
  ],

或者只是放入资产文件夹。