LoginSignup
2
4

More than 5 years have passed since last update.

vue-cliのdevサーバにプライベートネットワークから接続する

Last updated at Posted at 2018-07-03

モバイル端末で確認したい

普通にローカルIPでアクセスしてもロードが終わらず設定不足を睨む

config/index.jsにあった

下の箇所を変更

index.js
// Various Dev Server settings
- host: 'localhost', // can be overwritten by process.env.HOST
+ host: '0.0.0.0', // can be overwritten by process.env.HOST
port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined

無事接続

同じネットワークのモバイル端末からweb画面を表示できました

(追記)

バージョン書いてませんでした。。。

vue -V
2.9.3
2
4
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
2
4