Todd Hooper
Todd Hooper
@gsouf don't you have to manually invite people to a slack channel? I think that would make a slack channel less useful here.
> Issues are piling up in the issue tracker because the triaging rate is much lower than the reporting rate How can we, as a community, help on the issues...
I think improving documentation is always a good thing, but I don't know how much a flowchart would help besides superficial issues. I think zackw was doing lots of issue...
I just commented on your #46 issue too, but wanted to add my same point here for visibility: We don't recommend serving Prerendered pages to users when using our prerendering...
Does this code fix any whitelist issue anymore? Looking into the changes, it just adds an option to ignore the user agent check, which would cause prerendered pages to be...
The current implementation of the whitelist is correct. It should always still run the user agent check after the code has determined that the URL passes the whitelist check. What...
Happy to help! The problem here is the Prerender server will load all requests for a page, so it can take at least a few seconds to render the page...
You can preserve the `` tags if you run your own prerender server and just don't add the plugin in `server.js` to remove script tags. Removing the script tags is...
You should not add the Googlebot user agent to the list of user agents being checked. Checking Googlebot by their user agent could get you penalized for cloaking. Google follows...
Also pass the headers through. That way any 301/302 redirects pass along the Location header. Thanks!!