0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Sass】Live Sass Compilerで@useがコンパイルされない

Posted at

はじめに

今までVS Codeを使っていましたが、数ヶ月前からCursorを使い始めました。
拡張機能の「Live Sass Compiler」をインストールしましたが、コンパイルがうまくできませんでした。

コード

assets/scss/style.scss

@use "layouts/header";

と記述しコンパイルする(Watch Sassをクリックする)と、style.cssにも @use が記述されてしまいました。

assets/css/style.css

@use "layouts/header";

本来であれば、コンパイルされたassets/scss/layouts/_header.scssのコードが記述されるはず。

解決方法

Live Sass Compilerは2種類のバージョンが提供されていました。
古いバージョン3.0.0では@useをコンパイルできない そうです。
新しいバージョンをインストールしてコンパイルしたら解決しました。

古いバージョン(v3.0.0)

qiita_livesass_old.png

新しいバージョン(v6.1.2 - 2025/6/4時点)

qiita_livesass_new.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?