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?

はじめに

エディタの実装でMDXEditorを利用していたところ遭遇した問題を載せます

問題

MDXEditorを実装してエディタに

# Hello

と書いたのですが、#は消えるのですがなぜかHelloがh1文字になりません

解決方法

TailwindCSSが最新版が4系になったことでクラスが変わったようでスタイルが当たらなくなっていました。

3系をインストールし直したら無事スタイルが当たりました

$ npm install -D tailwindcss@3.4.13 autoprefixer postcss
$ npx tailwindcss init -p

おわりに

別の問題でコードブロックが使えないというのもあったので切り分けがむずかしかったd

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?