From 86694cb8b8ef467bd86ae46e2cbc85ac66c853ca Mon Sep 17 00:00:00 2001 From: matthewp Date: Fri, 11 Jun 2021 13:04:33 +0000 Subject: [PATCH] [ci] yarn format --- docs/api.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/docs/api.md b/docs/api.md index ed04ab5a85..d3f5c16cf0 100644 --- a/docs/api.md +++ b/docs/api.md @@ -150,17 +150,13 @@ Astro will generate an RSS 2.0 feed at `/feed/[collection].xml` (for example, `/ All ESM modules include a `import.meta` property. Astro adds `import.meta.env` through [Snowpack](https://www.snowpack.dev/). -__import.meta.env.SSR__ can be used to know when rendering on the server. Some times you might want different logic, for example a component that should only be rendered in the client: +**import.meta.env.SSR** can be used to know when rendering on the server. Some times you might want different logic, for example a component that should only be rendered in the client: ```jsx import { h } from 'preact'; -export default function() { - return ( - import.meta.env.SSR ? -
: - - ) +export default function () { + return import.meta.env.SSR ?
: ; } ```