Files
iamkun 6890afc149 chore: add missing docs (#10185)
Revert "chore: rm error doc (#10180)"

This reverts commit ceef0a56ecab9535096636a74b8677fcb7039b3b.
2022-10-21 14:48:25 +00:00

42 lines
841 B
Markdown

---
title: Development FAQ
lang: en-US
---
# Development FAQ
Here are the problems that are easy to encounter in development.
## If you encounter dependency related issues
```shell
rm -fr node_modules
pnpm i
```
## Link local dependencies
```shell
# get dist
pnpm build
cd dist/element-plus
# set cur element-plus to global `node_modules`
pnpm link --global
# for esm we also need link element-plus for dist
pnpm link --global element-plus
# go to your project, link to `element-plus`
cd your-project
pnpm link --global element-plus
```
> More info see [pnpm link](https://pnpm.io/cli/link).
## Theme
We should not write Chinese comments in scss files.
It will generate warning `@charset "UTF-8";` in the header of css file when built with vite.
> More info see [#3219](https://github.com/element-plus/element-plus/issues/3219).