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
These snippets aren't necessary, but might be nice to add.
Serve static assets:
# Serve static assets in /assets/ as-requested. location /assets/ { try_files $uri =404; }
Remove trailing slashes from app URLs:
location / { # Remove trailing slashes. rewrite ^(/.*)/$ $1 permanent; try_files $uri /index.html; }
The text was updated successfully, but these errors were encountered:
👍, wanna spin up a PR with them commented out with notes on usage?
Sorry, something went wrong.
No branches or pull requests
These snippets aren't necessary, but might be nice to add.
Serve static assets:
Remove trailing slashes from app URLs:
The text was updated successfully, but these errors were encountered: