From d1648a6780905ab099bd98938bf3db81897f1bed Mon Sep 17 00:00:00 2001 From: Amit Gurbani Date: Sat, 15 Jul 2023 19:12:32 +0530 Subject: [PATCH] Update storybook.mdx Storybook now can be built with node 18, hence removing this from documentation. --- docs/pages/repo/docs/handbook/tools/storybook.mdx | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/docs/pages/repo/docs/handbook/tools/storybook.mdx b/docs/pages/repo/docs/handbook/tools/storybook.mdx index 3e40859a3b3a1..9d7542f4ddb8d 100644 --- a/docs/pages/repo/docs/handbook/tools/storybook.mdx +++ b/docs/pages/repo/docs/handbook/tools/storybook.mdx @@ -209,15 +209,3 @@ Your `dev` and `build` tasks will now include Storybook, allowing you to develop Let's deploy your Storybook project. In the "Build and Development Settings" on the General tab of your project settings, change your "Output Directory" to `storybook-static`. - -Additionally, at the time of this writing, Storybook cannot be ran on Node 18, the Vercel default. In the `package.json` of your `workshop` app, add an `engines` field to make sure that this project runs on Node 16: - -```json filename="apps/workshop/package.json" -{ - // ... - "engines": { - "node": "16" - } -} - -```