As the title says, hot reloading is not working.
Serving WordPress on macOS Sequoia 15.2 via Flywheel Local, at https://tdh.local
.
After running npm run dev
, which I noticed that it’s calling bud dev
, I’m getting a 404 Not Found exception triggered by the app trying to access the non-existing URL at https://tdh.local/bud/hot
.
My bud.config
settings are:
app
.setUrl('https://tdh.local')
.setProxyUrl('http://example.test')
.watch(['resources/views', 'app']);
I also noticed that immediately after running the npm run dev
command, I’m getting this in Terminal:
BudError
✘ options.port should be >= 0 and < 65536. Received type number (NaN).
However, bud is doing its things afterwards:
╭ sage [edcd5522cfe2fd01] ./public
│
│ app
│ ◯ js/runtime.js 49.49 kB
│ ◯ js/app.js 159.26 kB
│
│ editor
│ ◯ js/runtime.js 49.49 kB
│ ◯ js/editor.js 2.26 MB
│
╰ 226ms 336 modules [336/336 modules cached]
Network
› Proxy ┄ http://example.test/
› Dev ┄ https://tdh.local/
┄ https://192.168.1.165/
Any thougths on this?
Thanks a lot!