[plugin:vite:css] Preprocessor dependency “sass” not found. Did you install it?と怒られた時
Vueの開発で、.vueの中でscssを使おうとして、<style lang=”scss”>としたら、以下のエラーで怒られた。
[plugin:vite:css] Preprocessor dependency "sass" not found. Did you install it? ・ ・ ・ Click outside or fix the code to dismiss. You can also disable this overlay by setting server.hmr.overlay to false in vite.config.js.
scssだけどsass?と思ったけど、以下コマンドでsassをインストールしたら解決した。
npm install --save-dev sass
-
前の記事
Symbolノードv1.0.3.4へのアップデート手順 2022.10.27
-
次の記事
ViteでVue.jsアプリケーションを起動するときのポート番号を指定する 2022.11.07