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?

More than 1 year has passed since last update.

Astroの開発環境で下部のツールバー(devToolbar)を消す方法

Last updated at Posted at 2024-02-21

Astroの開発環境では画面の下部にツールバー(devToolbar)が表示されます。

astoro toolbar.png

とても便利な機能ですが、消したい場面もあるかと思います。
本記事ではツールバーを消す方法について解説していきます。

Astroのツールバー(devToolbar)を削除する方法

ターミナルで下記のコマンドを実行します。

astro preferences disable devToolbar
// npm
npm run astro preferences disable devToolbar
// bun
bun astro preferences disable devToolbar
// pnpm
pnpm astro preferences reset devToolbar   

ツールバー(devToolbar)の設定を戻す方法

ツールバーを再度表示する場合は下記のコマンドを実行します。

astro preferences reset devToolbar
// npm
npm run astro preferences reset devToolbar
// bun
bun astro preferences reset devToolbar
// pnpm
pnpm astro preferences reset devToolbar   

参考

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?