Base solution for your next web application

Activities of "Prasanthtp"

Thanks

I received an error in *npm-run-build * in azure pipelines "uglify is not a function". I fixed it like this.

import gulpUglify from 'gulp-uglify-es';

const uglify = gulpUglify.default || gulpUglify;

I think the proper fix should be *gulp-terser *instead of gulp-uglify-es

  • gulp-uglify-es* is deprecated.

Hi I use .net core MVC&Jquery . How do I set up an Azure pipeline for the public website?

The following document only talks about the web.mvc project. I want to deploy web.public as well.

https://docs.aspnetzero.com/aspnet-core-mvc/latest/Setting-Up-an-Azure-Pipeline-Mvc-Core

One more question; do we need two separate app services in azure for public and mvc admin sites? My requirement is as follows;

www .mydomain.com should point to the public website and www .mydomain.com/app should point to the admin MVC site.

Showing 1 to 2 of 2 entries