1
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.

Laravel10でrpm run devを実行するとnet::ERR_ADDRESS_INVALIDが発生する

Posted at

概要

Laravel10 + Breeze(react)を使用。
ある時、npm run devを実行し、画面を確認すると下記のエラーがコンソールに表示されていた。
GET http://[::]:5173/@vite/client net::ERR_ADDRESS_INVALID

bashにはこんなエラーが...
Port 5173 is in use, trying another one...

対処方法

自分はvite.config.jsにclientPortを追加することで解決できました。

export default defineConfig({
    server: {
        hmr: {
            clientPort: 5173, ←ここを追加
            host: 'localhost',
        }
    },
});
1
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
1
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?