Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit 211be56

Browse files
committed
Translate faq/postcss
1 parent ff0bf64 commit 211be56

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Diff for: fr/faq/postcss-plugins.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
title: Plugins postcss
3+
description: Comment utiliser des plugins postcss
4+
---
5+
6+
# Comment utiliser des plugins postcss
7+
8+
Dans votre fichier `nuxt.config.js`:
9+
10+
```js
11+
module.exports = {
12+
build: {
13+
postcss: [
14+
require('postcss-nested')(),
15+
require('postcss-responsive-type')(),
16+
require('postcss-hexrgba')(),
17+
]
18+
}
19+
}
20+
```

0 commit comments

Comments
 (0)