Thursday, 12 May 2022

angular hmtl in production issue

 angular project while publication. getting the 404 issue so i have did following changes.

i changed base href in index.html

<base href="/">

to 
<base href="./">
by doing this issue resolved

No comments:

Post a Comment

remove duplicates in an sorted array

  using System; public class HelloWorld {          public static void Main(string[] args)     {         int[] ar={2,2,3,3,4,6,6};          C...