docs: update Nuxt 3 installation guide for Typescript issue fix (#71)

* docs: update Nuxt 3 installation guide

* docs: update Nuxt 3 installation guide
This commit is contained in:
Selemondev 2023-09-22 10:11:52 +03:00 committed by GitHub
parent 97e9b57eb0
commit 3e9d8063cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,13 @@ Start by creating a new Nuxt project using `create-next-app`:
npx nuxi@latest init my-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 ### Install TailwindCSS module
```bash ```bash