From 583fe020b4908c54076f928ae6702467a5a91af8 Mon Sep 17 00:00:00 2001 From: Yaroslav K Date: Mon, 31 Aug 2020 13:35:30 +0200 Subject: [PATCH] Fix typo in the website as well --- website/pages/optimization.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/pages/optimization.mdx b/website/pages/optimization.mdx index dc12e9089..e837b4651 100644 --- a/website/pages/optimization.mdx +++ b/website/pages/optimization.mdx @@ -94,7 +94,7 @@ if (process.env.NODE_ENV !== 'production') { } ``` -**IMPORTANT:** To use `__DEV__` in TypeScript, you need add `declare var __DEV__: boolean` somewhere in your project's type path (e.g. `./types/index.d.ts`). +**IMPORTANT:** To use `__DEV__` in TypeScript, you need to add `declare var __DEV__: boolean` somewhere in your project's type path (e.g. `./types/index.d.ts`). ```ts // ./types/index.d.ts