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?

Nuxtの開発サーバーに外部からIPv6でアクセスしたい

Posted at

動機

iOS17.2からテザリングではiPhoneからPCへのアクセスにIPv4が使用できなくなった。
仕方がないのでIPv6でアクセスできるようにする。

解決方法

nuxt.config.tsでhostに'::'を指定する。

// nuxt3
  devServer: {
    host: '::',
    port: 3900,
  },

// nuxt2
  server: {
    host: '::',
    port: 3900,
  },

nuxt3は開発サーバー起動時にIPv6のURLが表示される。
nuxt2はifconfigでIPを調べる。

image.png

先頭にinet6、末尾にsecuredが表示されているIPから下記のようにURLを導く。

http://[240a:61:5025:2266:be:ba2:961e:84dd]:3900/
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?