-
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for flexbox and grid options and add documentation (#74)
- Loading branch information
1 parent
47f1b47
commit 6e2ee96
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,17 @@ | ||
{ | ||
// @see Browserslist docs https://github.com/ai/browserslist#queries | ||
"browsers": ["defaults"], | ||
// Autoprefixer use Visual Cascade, if CSS is uncompressed | ||
// boolean | ||
"cascade": true, | ||
// Autoprefixer [remove outdated] prefixes | ||
// boolean | ||
"remove": true, | ||
// Autoprefixer add prefixes for flexbox properties | ||
// boolean|string (no-2009) | ||
"flexbox": true, | ||
// Autoprefixer add IE prefixes for Grid Layout properties/ | ||
// boolean | ||
"grid": true, | ||
"prefixOnSave": false | ||
} |