33 lines
No EOL
889 B
Markdown
33 lines
No EOL
889 B
Markdown
|
|
## FAQ (For Beginners)
|
|
|
|
### How to config the settings in my project?
|
|
|
|
Create a `.vscode` folder in the root of project. Inside of `.vscode` folder create a json file named `settings.json`.
|
|
Inside of the `settings.json`, type following key-value pairs. By the way you'll get intelli-sense.
|
|
|
|
```json
|
|
{
|
|
"liveSassCompile.settings.formats":[
|
|
{
|
|
"format": "expanded",
|
|
"extensionName": ".css",
|
|
"savePath": "/css"
|
|
},
|
|
{
|
|
"extensionName": ".min.css",
|
|
"format": "compressed",
|
|
"savePath": "/dist/css"
|
|
}
|
|
],
|
|
"liveSassCompile.settings.excludeList": [
|
|
"**/node_modules/**",
|
|
".vscode/**"
|
|
],
|
|
"liveSassCompile.settings.generateMap": true,
|
|
"liveSassCompile.settings.autoprefix": [
|
|
"> 1%",
|
|
"last 2 versions"
|
|
]
|
|
}
|
|
``` |