How to avoid Debugger including project folder when starting localhost
When I run the debugger it starts a loclhost on e.g.
`http://localhost:63343/projectName/path/file`
However, I would like it NOT to include the "projectName", like:
`http://localhost:63343/path/file`
How can I achieve this?
Please sign in to leave a comment.
The built-in web server is not configurable, it always serves opened projects from
localhost:63342/project_name
There is no way to change this, if you need your files to be served from the web server root, try hosting your project on a different web server