Angular routing not working on Netlify on page refresh

前端 未结 4 1383
你的背包
你的背包 2020-12-15 08:19

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

4条回答
  •  臣服心动
    2020-12-15 08:45

    try Build command: ng build --prod --base-href ./ and add file to root project netlify.toml:

    # A basic redirects rule
    [[redirects]]
      from = "/*"
      to = "/index.html"
    

提交回复
热议问题