Skip to content

Commit

Permalink
Re-enable autoprefixer in build
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwathan committed Feb 1, 2019
1 parent 269b244 commit 6dfa4e8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ function buildDistFile(filename) {
fs.readFile(`./${filename}.css`, (err, css) => {
if (err) throw err

// return postcss([tailwind(), require('autoprefixer')])
return postcss([tailwind()])
return postcss([tailwind(), require('autoprefixer')])
.process(css, {
from: `./${filename}.css`,
to: `./dist/${filename}.css`,
Expand Down

0 comments on commit 6dfa4e8

Please sign in to comment.