9
6

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 5 years have passed since last update.

macOSのlocalhostへParallels(Windows 10)内のブラウザからアクセスする方法(webpack-dev-serverの場合)

Posted at

バージョン

  • Parallels Desktop 15

共通手順

  1. 開発用サーバーのIPアドレスを0.0.0.0に固定する
  2. ParallesのWindows10構成>ハードウェア>ネットワークのソースを共有ネットワーク(推奨)に設定
  3. macのターミナルでifconfigと入力し、vnic0の項目でinetの隣の値をコピー(大抵は10.211.55.2)
  4. Windows 10よりブラウザでhttp://10.211.55.2:[ポート番号] へアクセス

webpack-dev-serverの設定

以下の設定でIPアドレスを設定。

webpack.config.js

module.exports = {

//中略

devServer: {
	host:'0.0.0.0',
	disableHostCheck: true
}

//中略

};

またはnpm scriptsに以下のように書いても同じ。

webpack-dev-server --host 0.0.0.0 --disable-host-check

ブラウザでIPアドレスを入力する手間を省く設定

  1. Windows 10のメモ帳を管理者権限で開く
  2. ファイル>開くからSystem32>drivers>etc>hosts.を開く(すべてのファイルに切り替えておく)
  3. ifconfigでコピーしたアドレスを貼り付けて隣に適当なドメインを書く(localhost.macなど)
hosts.
10.211.55.2 localhost.mac

参考記事

9
6
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
9
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?