chore(lint): Prettier fix

This commit is contained in:
GitHub Action 2021-12-03 14:40:46 +00:00
parent a7a5546429
commit 213a2622e2

View file

@ -129,9 +129,7 @@ Its recommended to only use this in scenarios where a `<link>` tag wont wo
```js
// postcss.config.cjs
module.exports = {
plugins: [
require("autoprefixer")
],
plugins: [require('autoprefixer')],
};
```
@ -222,9 +220,7 @@ module.exports = {
```js
// postcss.config.cjs
module.exports = {
plugins: [
require("tailwindcss")
],
plugins: [require('tailwindcss')],
};
```