We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to reproduce:
git clone repo.git my-app cd my-app npm install npm run start:hmr # or npm run start
Now navigate to http://localhost:8080/about. Doesn't work.
http://localhost:8080/about
Navigating from http://localhost:8080/, and clicking About on top does work.
http://localhost:8080/
About
If we check what gets offered by the webserver, we can clearly see that for http://localhost:8080/about there are no scripts.
The text was updated successfully, but these errors were encountered:
Weird. I will investigate.
Sorry, something went wrong.
Route like this should be somewhere in serving (nodejs) code:
// Angular routes support app.use("*", function (req, res) { res.sendFile(path.join(__dirname, "../public/index.html")); });
The problem is the dev server. I reported it here webpack/webpack-dev-server#640
I reverted to beta 5 which works. As soon as the bug gets fixed, I updated the server again.
No branches or pull requests
How to reproduce:
Now navigate to
http://localhost:8080/about
. Doesn't work.Navigating from
http://localhost:8080/
, and clickingAbout
on top does work.If we check what gets offered by the webserver, we can clearly see that for
http://localhost:8080/about
there are no scripts.The text was updated successfully, but these errors were encountered: