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
This is a minor issue. Just be aware that in your router.js, you should be as specific as possible in your if conditions. So instead of
endpoint.includes("/public")
it would be more specific to use
endpoinr.startsWith("/public")
This way, there won't be any conflicts if you add an endpoint later on which includes the word public
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
No branches or pull requests
This is a minor issue. Just be aware that in your router.js, you should be as specific as possible in your if conditions. So instead of
it would be more specific to use
This way, there won't be any conflicts if you add an endpoint later on which includes the word public
The text was updated successfully, but these errors were encountered: