Update CONTRIBUTING.md (#1677)

This commit is contained in:
Drew Powers 2021-10-27 12:05:31 -06:00 committed by GitHub
parent 9f44a513ee
commit 387bd1a48f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,6 +34,15 @@ yarn dev
yarn build
```
#### Debugging Vite
You can debug vite by prefixing any command with `DEBUG` like so:
```
DEBUG=vite:* astro dev # debug everything in Vite
DEBUG=vite:[name] astro dev # debug specific process, e.g. "vite:deps" or "vite:transform"
```
### Running tests
```shell