If you enable the LEGO Hub hardware interface and don't have a Bluetooth device connected to your server it throws an exception at the start up of the server:
addons\vuforia-spatial-core-addon\node_modules\@abandonware\bluetooth-hci-socket\lib\usb.js:91 throw new Error('No compatible USB Bluetooth 4.0 device found!');
It is not possible to change this setting anymore since the server won't start up.
Quick fix is disabling the LEGO hub by go to this path:
addons\vuforia-spatial-core-addon\interfaces\LegoHub\index.js
and change line 56 from if (exports.enabled) { to if (exports.enabled && false) {.
This will disable the LEGO hub hardware interface and makes it possible to run the server again.