当我使用VS Code并打开一个项目时,我在右下角收到此通知:Failed to load module. If you have prettier or plugins referenced in package.json, ensure you have run
npm安装Attempted to load prettier from package.json.
Source: Prettier Code Format (Extension)
运行npm install无法解决此问题。任何人都知道为什么会这样,或者我可以做些什么来解决它?
最佳答案
这是对我有用的解决方案
1. (如果从未在全局上安装过Prettier,请通过npm在全局范围内安装)
npm i prettier -g
2. 在VS Code设置中搜索并使用
Prettier Path
扩展设置//您可以浏览至所有Prettier Extension设置的VS Code
Settings > Extensions > Prettier
3. 将
Prettier Path
更新为全局安装的Prettier。例如
/usr/local/lib/node_modules/prettier
(Mac OS)\AppData\Roaming\npm\node_modules\prettier
(Windows)