Как добавить поддержку PostCSS в Vue cli 3 (я использую бета 7)? Есть ли плагин для этого? Не поддерживается из коробки.
Когда я пытался импортировать, как это
import './index.pcss'
используя сгенерированный по умолчанию проект
./src/index.pcss
Module parse failed: Unexpected token (1:0)
You may need an appropriate loader to handle this file type.
| .sofa {
| font-family: "sofachrome", serif;
| }
@ ./src/main.js 5:0-22
my postcssrc.js:
module.exports =
{
'plugins': {
'autoprefixer': {},
'postcss-smart-import': {},
'postcss-custom-properties': {},
'postcss-nested': {}
}
}