如何在 SharePoint 2013 中部署 Angular 应用程序

How to Deploy Angular App in SharePoint 2013

我已经创建了 angular 项目(基本上是一个表单)。如何部署 SharePoint 2013?

我已经尝试使用命令 ng build 构建项目,但它不起作用

无法正确 article/answer 将 angular 应用程序部署到 SharePoint。 我没有在应用程序中使用任何 SP 服务,而是使用 REST API

有人可以提供这方面的信息吗?

使用 AngularCLI 构建 angular 应用程序的示例演示。

部署应用后,运行npm run bundle构建应用。

将 dist 文件复制到 SharePoint

更新 index.html 以品脱这些 js 文件。

<body>
  <app-angular-demo-web-part description="Hello world!"></app-angular-demo-web-part>
<script src="/SiteAssets/AngularDemo/runtime.js"></script><script src="/SiteAssets/AngularDemo/polyfills-es5.js" nomodule></script><script src="/SiteAssets/AngularDemo/polyfills.js"></script><script src="/SiteAssets/AngularDemo/scripts.js"></script><script src="/SiteAssets/AngularDemo/main.js"></script></body>

Link 内容编辑器 Web 部件中的 html 文件和结果。

Refer this thread