ejyy/readme/windows.MD
2021-11-15 16:22:33 +08:00

13 lines
360 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## windows 下开发常见问题
### server目录下执行`npm run dev`报错
> 这个问题是因为windows下没有export命令导致的按照如下方法解决
安装依赖
```
npm install -g ts-node typescript cross-env
```
修改 `server/package.json`中的`scripts.dev``cross-env NODE_ENV=development nodemon -e ts --exec 'ts-node' src/app.ts`