Reputation: 86
I have created a new Angular 4 application using Angular-cli and tried to deploy it on to Azure Service Fabric. I have used Visual Studio code to develop the application. I am able to create the bundles using ng build but couldnt able to deploy it on to Azure Service Fabric
Upvotes: 0
Views: 1257
Reputation: 855
Ng build got nothing to do with Service Fabric stuff. If you want to host AngularJS app on Service Fabric then I guess all you need is a .Net Core project to serve static files and include all your AngularJS files in that project.
Upvotes: 1