LoginSignup
3
0

More than 3 years have passed since last update.

Next.jsでcssのクラス名にケバブケースを使う方法

Posted at

前提

Next.jsのバージョン10.2.0
スタイリングにsassを使用。

問題

以下のようにケバブケースで書こうとするとエラーが出てしまう。

className={styles.company-logo}

解決策

以下のように書くと上手く動作します。

className={styles['company-logo']}

参考
https://stackoverflow.com/questions/61794899/using-kebab-case-css-classnames-in-css-sass-modules-when-using-next-js

3
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
3
0