Skip to content

Commit ec27df0

Browse files
committed
Do not extract PostCSS results
1 parent f1a563a commit ec27df0

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

rollup.config.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import {
55
} from '@rollup/plugin-babel'
66
import commonjs from '@rollup/plugin-commonjs'
77
import postcss from 'rollup-plugin-postcss'
8-
import autoprefixer from 'autoprefixer'
98

109
const packageJson = require('./package.json')
1110

@@ -30,11 +29,6 @@ export default {
3029
babelHelpers: 'bundled'
3130
}),
3231
commonjs(),
33-
postcss({
34-
extract: true,
35-
plugins: [
36-
autoprefixer()
37-
]
38-
})
32+
postcss()
3933
]
4034
}

0 commit comments

Comments
 (0)