I am following along with some Vue projects using vue init webpack test
, but it seems like when running npm run dev
, there is always a #/
appended to all urls.
This is also true for when I create a new component and route to it. If i do something like http://localhost:8080/newpath
, it becomes http://localhost:8080/newpath#/
.
Is there a config variable I can set so that the #/
is not appended to every URL? Using regex to remove it on every URL seems really unwieldily.
I am not including any actual source code because this is from the HelloWorld app that vue init creates.
I am using the latest versions for vue cli 3.