LoginSignup
23
8

More than 5 years have passed since last update.

スマホからNuxt.jsで作ったアプリに接続する

Posted at

Railsなどで開発している場合、webサーバーが勝手にやってくれているので、
スマホとMacを同じWifiに接続すれば、 MacのIP指すればで、Macのローカルホストに簡単に接続できます。

192.168.11.11:3000

nuxtの場合は、設定が一つ必要。
cross-envを入れて、HOSTとPORTを設定する。

"scripts": {
    "dev":"cross-env HOST=0.0.0.0 PORT=3333 nuxt"
}

Railsの場合は、0.0.0.0を自動でlistenしてくれるが、Nuxtは上記設定を書き加えないとやってくれないようだった。

参考: https://ja.nuxtjs.org/faq/host-port/

23
8
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
23
8