The firebase emulator 11.0.0 is failing to start
firebase emulators:start
an Exception is thrown when it gets to Emulator UI...
i ui: Emulator UI logging to ui-debug.log
⚠ ui: Fatal error occurred: Emulator UI has exited with code: 1, stopping all running emulators
i ui: Stopping Emulator UI
⚠ ui: Error stopping Emulator UI
The stack trace from ui-debug.log shows...
node:internal/modules/cjs/loader:936 throw err;
Error: Cannot find module '/Users/hayden/Desktop/parent_app_firebase_cloud_emulator/functions/--dns-result-order=ipv4first'.
at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15).
at Function._resolveFilename (pkg/prelude/bootstrap.js:1955:46). at Function.Module._load (node:internal/modules/cjs/loader:778:27).
at Function.runMain (pkg/prelude/bootstrap.js:1983:12).
at node:internal/main/run_main_module:17:47 { code: 'MODULE_NOT_FOUND', requireStack: [] }.
Looks like the error has something to do with line 84...
Starting Emulator UI with command {"binary":"node","args":["--dns-result-order=ipv4first"
Which then throw an error in node as its unable to find a module called --dns-result-order=ipv4first
Any ideas on how to startup the local firebase emulator so it runs without failing with this exception?
Running Node 16 and Firebase 11.0.0