From 3e9d8063ccfedd0b433f017d52da42bd0e39d62d Mon Sep 17 00:00:00 2001 From: Selemondev <106826371+selemondev@users.noreply.github.com> Date: Fri, 22 Sep 2023 10:11:52 +0300 Subject: [PATCH] docs: update Nuxt 3 installation guide for Typescript issue fix (#71) * docs: update Nuxt 3 installation guide * docs: update Nuxt 3 installation guide --- apps/www/src/content/docs/installation/nuxt.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/www/src/content/docs/installation/nuxt.md b/apps/www/src/content/docs/installation/nuxt.md index 45e3ac63..64b16b10 100644 --- a/apps/www/src/content/docs/installation/nuxt.md +++ b/apps/www/src/content/docs/installation/nuxt.md @@ -13,6 +13,13 @@ Start by creating a new Nuxt project using `create-next-app`: npx nuxi@latest init my-app ``` +### Install TypeScript + +If you encounter the error `ERROR: Cannot read properties of undefined (reading 'sys') (x4)`, please proceed to install TypeScript as a dependency, as advised in this [issue](https://github.com/nuxt/nuxt/issues/20936) + +```bash +npm install -D typescript +``` ### Install TailwindCSS module ```bash