indra257
indra257

Reputation: 86

Deploying an Angular cli application on to Azure Service fabric

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

Answers (1)

duongthaiha
duongthaiha

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

Related Questions