Meteor-Community-Packages / meteor-fast-render

Render your app before the DDP connection even comes alive - magic?

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IsAppUrl filter & curl

soolidtech opened this issue · comments

return /html/.test(req.headers.accept);

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);