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.

はじめての記事投稿

VSCodeのLiveServer機能を使ってローカルサーバーにスマホからアクセスする方法

Last updated at Posted at 2023-07-11

LiveServerとは

VSCodeの拡張機能でWebページ作成をする際に便利なプラグイン
現在作成中のページをローカルサーバー経由でブラウザから開くことができる
さらに、リアルタイムで変更が反映されるからとても便利

問題点

Webページ作成をしているときにレスポンシブデザインの対応テストとしてスマホなどのPC以外の別端末で見たいときがあると思います。しかし、通常の設定ではPCで開いているサイトのURLにそのままアクセスしようとするとできないです。今回はURLを変更することによってスマホからURLコピペするだけでアクセスできるようにします。

やり方

VSCodeの設定を開きます。
「設定の検索」で「liveserver」と打ち込みます。
下へスクロールして「Use Local Ip」にチェックを入れます。
おしまい

結果

ブラウザ上に表示されるURLが「http://127.0.0.1:5500/index.html」から「http://192.168.XX.XX:5500/index.html」に変わったと思います。あとはこれにアクセスするだけで別端末からサイトが見れます。

追記

Chromeの検証ツールからPC表示とスマホ表示切り替えられるのでそっちのほうが速いです。

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?