javascript - dot is not working in webpack dev server url after refresh -


i have following url:

about/myfile.php?.. 

it's working fine when coming page myfile.php. now, refreshing page. after refresh getting:

cannot /about/myfile.php

as suggested here https://github.com/fabric8-ui/fabric8-ui/pull/1391/files, have made changes in webpack.config.js file:

 devserver: {       historyapifallback: {         disabledotrule: true,       },     }, 

but, it's not working on refresh.


Comments

Popular posts from this blog

python - Best design pattern for collection of objects -

go - serving up pdfs using golang -

python - django admin: changing the way a field (w/ relationship to another model) is submitted on a form so that it can be submitted multiple times -