I am trying to configure webpack devserver to run in http://localhost:8080/myProject
instead of the root path localhost:8080
I already tried to configure
public: 'https://localhost:8080/myProject',
and
publicPath: '/myProject/'
settings but I can't make it work.
I also tried to play with the proxy settings but that seems wrong.
The reason why i need this change it's because the api server sends a cookie with path=/myProject.
What am I missing?