serve icon indicating copy to clipboard operation
serve copied to clipboard

Add project name suffix in url

Open jingping-ye opened this issue 5 years ago • 1 comments

Could the url can be localhost:5000/myProject/#/ ? The project is runing in that way.

jingping-ye avatar Jun 29 '20 12:06 jingping-ye

@jingping-ye the following should work (assuming your index.html is in the root folder). Doesn't it work for you?

{
  "rewrites": [
    { "source": "myProject/**", "destination": "/index.html" }
  ]
}

heidemn avatar Jun 03 '21 00:06 heidemn