PostCSS
PostCSS はプロジェクトルートに postcss.config.js
を作成することで使えます。例えば、Autoprefixer を使う場合は npm install して以下のように設定。
$ npm install --save-dev autoprefixer
// postcss.config.js
module.exports = {
plugins: {
autoprefixer: { grid: "autoplace" },
},
}