Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update postcss-plugins.md #55

Open
wants to merge 1 commit into
base: translation-ru
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 40 additions & 7 deletions ru/faq/postcss-plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,49 @@ description: Как добавить PostCSS плагины?

# Добавление PostCSS плагинов

В вашем файле конфигурации `nuxt.config.js` укажите:
### Рекомендуемый способ

Если в корне вашего проекта находится файл `postcss.config.js`, то удалите или переименуйте его. Затем в файле `nuxt.config.js` пропишите следующее:

```js
module.exports = {
export default {
build: {
postcss: [
require('postcss-nested')(),
require('postcss-responsive-type')(),
require('postcss-hexrgba')(),
]
postcss: {
// В качестве ключа укажите имя плагина, а в качестве значения - аргументы
// Предварительно установите необходимые плагины через npm или yarn
plugins: {
// Отключить нужный плагин можно указав false в качестве значения имени объекта
'postcss-url': false,
'postcss-nested': {},
'postcss-responsive-type': {},
'postcss-hexrgba': {}
},
preset: {
// Пример изменение настроек postcss-preset-env
autoprefixer: {
grid: true
}
}
}
}
}
```

### Традиционный способ
Используйте `postcss.config.js`, например:

```
const join = require('path').join
const tailwindJS = join(__dirname, 'tailwind.js')

module.exports = {
plugins: [require('tailwindcss')(tailwindJS), require('autoprefixer')]
}
```

>
> **ВНИМАНИЕ!!!**
>
> Данный способ считается устаревшим и будет исключен в версии Nuxt3
> При использовании данного способа при компиляции в консоль будет выводится соответствующее предупреждение
>