Skip to content

Commit 6dfa4e8

Browse files
committed
Re-enable autoprefixer in build
1 parent 269b244 commit 6dfa4e8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/build.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ function buildDistFile(filename) {
1010
fs.readFile(`./${filename}.css`, (err, css) => {
1111
if (err) throw err
1212

13-
// return postcss([tailwind(), require('autoprefixer')])
14-
return postcss([tailwind()])
13+
return postcss([tailwind(), require('autoprefixer')])
1514
.process(css, {
1615
from: `./${filename}.css`,
1716
to: `./dist/${filename}.css`,

0 commit comments

Comments
 (0)