Skip to content

Commit

Permalink
Add warning for changes that may affect server-side rendering (#9755)
Browse files Browse the repository at this point in the history
  • Loading branch information
honeybadgerdontcare committed Jun 7, 2017
1 parent d971b90 commit 87e2bac
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/render-delaying-services.js
Expand Up @@ -23,6 +23,17 @@ import {timerFor} from './services';
* and the value is a DOM query which is used to check if the service is needed
* in the current document.
* Do not add a service unless absolutely necessary.
*
* \ \ / \ / / / \ | _ \ | \ | | | | | \ | | / _____|
* \ \/ \/ / / ^ \ | |_) | | \| | | | | \| | | | __
* \ / / /_\ \ | / | . ` | | | | . ` | | | |_ |
* \ /\ / / _____ \ | |\ \----.| |\ | | | | |\ | | |__| |
* \__/ \__/ /__/ \__\ | _| `._____||__| \__| |__| |__| \__| \______|
*
* The equivalent of this list is used for server-side rendering (SSR) and any
* changes made to it must be made in coordination with caches that implement
* SSR. For more information on SSR see bit.ly/amp-ssr.
*
* @const {!Object<string, string>}
*/
const SERVICES = {
Expand Down

0 comments on commit 87e2bac

Please sign in to comment.