Merge pull request #1062 from danielduan/postcss-config

Upgraded webpack PostCSS plugin definition
This commit is contained in:
Daniel Duan 2017-05-19 16:07:51 -04:00 committed by GitHub
commit a47d8d1a0f

View File

@ -5,18 +5,7 @@ import { includePaths, excludePaths } from '../utils';
// Add a default custom config which is similar to what React Create App does.
module.exports = storybookBaseConfig => {
const newConfig = { ...storybookBaseConfig };
newConfig.plugins = [
...storybookBaseConfig.plugins,
new webpack.LoaderOptionsPlugin({
options: {
postcss: [
autoprefixer({
browsers: ['>1%', 'last 4 versions', 'Firefox ESR', 'not ie < 9'],
}),
],
},
}),
];
newConfig.module.rules = [
...storybookBaseConfig.module.rules,
{
@ -31,7 +20,16 @@ module.exports = storybookBaseConfig => {
importLoaders: 1,
},
},
'postcss-loader',
{
loader: 'postcss-loader',
options: {
plugins: () => [
autoprefixer({
browsers: ['>1%', 'last 4 versions', 'Firefox ESR', 'not ie < 9'],
}),
],
},
},
],
},
{