Skip to content

Commit

Permalink
Fix PostCSS block usage (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
andywer authored Jul 27, 2019
1 parent 7c10446 commit a2964ff
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,11 @@ module.exports = createConfig([
babel(),
match(['*.css', '!*node_modules*'], [
css(),
postcss([
autoprefixer({ browsers: ['last 2 versions'] })
])
postcss({
plugins: [
autoprefixer({ browsers: ['last 2 versions'] })
]
})
]),
match(['*.gif', '*.jpg', '*.jpeg', '*.png', '*.webp'], [
file()
Expand Down

0 comments on commit a2964ff

Please sign in to comment.