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
meteor-fast-render/lib/server/utils.js
Line 29 in 0a3e50c
IsAppUrl makes SSR feature impossible with crawlers like curl which have accept header fixed to */* (all)
*/*
Maybe it should be replaced by :
return /html|\*\/\*/.test(req.headers.accept);
The text was updated successfully, but these errors were encountered:
for reference : https://developer.mozilla.org/fr/docs/Web/HTTP/Headers/Accept
Sorry, something went wrong.
this is a fantastic idea. I luckily found this issue. FastRender's server routes are really handy for SSRs to render metatags
No branches or pull requests
meteor-fast-render/lib/server/utils.js
Line 29 in 0a3e50c
IsAppUrl makes SSR feature impossible with crawlers like curl which have accept header fixed to
*/*
(all)Maybe it should be replaced by :
The text was updated successfully, but these errors were encountered: