Skip to content
This repository has been archived by the owner on Dec 30, 2022. It is now read-only.

Commit

Permalink
fix(storybook): process CSS through autoprefixer (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime Janton authored and mthuret committed Jun 22, 2017
1 parent c1e751a commit 62cf512
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions storybook/postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// eslint-disable-next-line import/no-commonjs
module.exports = {
plugins: {
autoprefixer: {},
},
};
2 changes: 1 addition & 1 deletion storybook/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
rules: [
{
test: /\.scss$/,
use: ['style-loader', 'css-loader', 'sass-loader'],
use: ['style-loader', 'css-loader', 'postcss-loader', 'sass-loader'],
},
],
},
Expand Down

0 comments on commit 62cf512

Please sign in to comment.