前提・実現したいこと
Live Sass Compilerのプラグインでインストールしましたが自動でコンパイルされません。
cssとベンダープレフィックスが自動でコンパイルされません。
原因はセッティングに問題があるのでしょうか?
発生している問題・エラーメッセージ
settings.jsonのコードの中身になります。 { "liveSassCompile.settings.formats": [ //Sassの出力内容の設定 { "format": "expanded", //nested、compact、compressedのどれかを選ぶ "extensionName": ".css", //style.cssとして出力 "savePath": "/css" //cssフォルダの中にstyle.cssを出力 } ], "liveSassCompile.settings.excludeList": [ //対象外とするフォルダを指定 "**/node_modules/**", ".vscode/**", ".history/**" ], "liveSassCompile.settings.autoprefix": [ //ベンダープレフィックスの指定 "last 2 versions", "ie >= 11", "Android >= 4", "ios_saf >= 8" ], "window.zoomLevel": 2, "liveServer.settings.donotShowInfoMsg": true, "files.autoSave": "afterDelay", "files.trimTrailingWhitespace": true, "files.insertFinalNewline": true, "liveServer.settings.donotVerifyTags": true }
あなたの回答
tips
プレビュー