Skip to content

Commit

Permalink
Remove browsers from PostCSS Config
Browse files Browse the repository at this point in the history
Specifying browsers via this config is not recommended. The best way to provide browsers is a .browserslistrc file in your project root, or by adding a browserslist key to your package.json. (see: https://github.com/postcss/autoprefixer). However, if you don't define the supported browsers the default browsers option will be used (which is a great setup).
REF: https://github.com/browserslist/browserslist#full-list
  • Loading branch information
coliff committed Jun 22, 2020
1 parent 2089852 commit b2d3cce
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions postcss.config.js
Expand Up @@ -16,17 +16,6 @@ limitations under the License.

module.exports = {
plugins: {
autoprefixer: {
browsers: [
"Android 2.3",
"Android >= 4",
"Chrome >= 20",
"Firefox >= 24",
"Explorer >= 8",
"iOS >= 6",
"Opera >= 12",
"Safari >= 6"
]
}
autoprefixer: {}
},
}

0 comments on commit b2d3cce

Please sign in to comment.