将 postcss 与 autoprefixer 一起使用并出现错误 - 'cannot find module'

Using postcss with autoprefixer and geting the error - 'cannot find module'

我正在尝试使用 npm 脚本添加前缀。

这是我正在使用的 npm 脚本

postcss --use autoprefixer prodapp/css/sass.css -d prodapp/css/

在他们的 git 中心页面上,他们也显示了相同的命令。 https://github.com/postcss/autoprefixer#cli

这是我遇到的错误

x Plugin Error: Cannot find module 'prodapp/css/sass.css'

Robc 的建议对我有用。正确的脚本应该遵循如下顺序

postcss prodapp/css/sass.css --use autoprefixer -d prodapp/css/