I deploy to netlify using ng build --prod, and the website works. But when I go to it, it automatically changes the link by adding /home onto the e
ng build --prod
/home
try Build command: ng build --prod --base-href ./ and add file to root project netlify.toml:
ng build --prod --base-href ./
# A basic redirects rule [[redirects]] from = "/*" to = "/index.html"