Skip to content

Commit 5a1c758

Browse files
committed
fix(postcss): postcss changed the way that plugins are included
1 parent a8b9653 commit 5a1c758

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

lib/preprocessors.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,11 @@ module.exports = {
2929
},
3030
css: {
3131
broccoliPlugin: 'broccoli-postcss-single',
32-
options: [{
33-
module: require('postcss-import'),
34-
}],
32+
options: {
33+
plugins: [{
34+
module: require('postcss-import'),
35+
}],
36+
map: true,
37+
},
3538
},
3639
};

0 commit comments

Comments
 (0)