Skip to content

Commit 9c0d18a

Browse files
committed
Add autoprefixer to PostCSS installation examples
1 parent 3ffe2a5 commit 9c0d18a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

docs/source/docs/installation.blade.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ module.exports = {
9494
plugins: [
9595
// ...
9696
tailwindcss('./path/to/your/tailwind-config.js'),
97+
require('autoprefixer'),
9798
// ...
9899
]
99100
}
@@ -113,6 +114,7 @@ gulp.task('css', function () {
113114
.pipe(postcss([
114115
// ...
115116
tailwindcss('./path/to/your/tailwind-config.js'),
117+
require('autoprefixer'),
116118
// ...
117119
]))
118120
// ...

0 commit comments

Comments
 (0)