使用npm 安装 postcss postcss-modules postcss-flexbugs-fixes -D
时间: 2024-06-13 22:04:56 浏览: 133
可以使用以下命令来安装postcss、postcss-modules和postcss-flexbugs-fixes:
```
npm install postcss postcss-modules postcss-flexbugs-fixes -D
```
其中,-D表示将这些包作为开发依赖项进行安装。安装完成后,你可以在webpack配置文件中使用这些包。
阅读全文