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
If you add an image to your build.static.source path while the local dev server is running, it will not be served.
build.static.source
This is because the Express.js server doesn't know about this new asset and it will not respond to routes that match its path.
We need to update the static paths for Express whenever a file is added/removed in the paths that the server is watching.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
If you add an image to your
build.static.source
path while the local dev server is running, it will not be served.This is because the Express.js server doesn't know about this new asset and it will not respond to routes that match its path.
We need to update the static paths for Express whenever a file is added/removed in the paths that the server is watching.
The text was updated successfully, but these errors were encountered: