Last active
May 12, 2018 05:20
-
-
Save onocom/85f6218d3effc73688aa34cb0e0c21c2 to your computer and use it in GitHub Desktop.
VS CODE でLive Sass Compilerを利用する場合の設定
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
{ | |
"liveSassCompile.settings.formats":[ | |
{ | |
"format": "expanded", | |
"extensionName": ".css", | |
"savePath": "~/../" | |
} | |
], | |
"liveSassCompile.settings.excludeList": [ | |
"**/node_modules/**", | |
".vscode/**" | |
], | |
"liveSassCompile.settings.generateMap": false, | |
"liveSassCompile.settings.autoprefix": [ | |
"> 1%", | |
"last 2 versions" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment