Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/docsy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Oliff <christianoliff@pm.me>2020-06-22 18:17:58 +0300
committerGitHub <noreply@github.com>2020-06-22 18:17:58 +0300
commitb2d3cce4cbfdf6514b892cd530553eeaca9e61ef (patch)
tree0bf992898aab4279d147897e949ff9890b230102 /postcss.config.js
parent2089852afb1a0803c56c5ef3f778ccb051aa8951 (diff)
Remove browsers from PostCSS Config
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
Diffstat (limited to 'postcss.config.js')
-rw-r--r--postcss.config.js13
1 files changed, 1 insertions, 12 deletions
diff --git a/postcss.config.js b/postcss.config.js
index 13d64ec..ad6eb70 100644
--- a/postcss.config.js
+++ b/postcss.config.js
@@ -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: {}
},
}