I'm using nx for a project and all I have is a svelte kit project, untouched, generated using this command:
nx g @nxext/sveltekit:app dashboard
when running nx serve dashboard I get this error
> NX Cannot read properties of undefined (reading 'length')
TypeError: Cannot read properties of undefined (reading 'length')
at interpolateArgsIntoCommand (C:\Users\USER\Documents\Assassin\node_modules\nx\src\executors\run-commands\run-commands.impl.js:193:47)
at C:\Users\USER\Documents\Assassin\node_modules\nx\src\executors\run-commands\run-commands.impl.js:106:21
at Array.forEach (<anonymous>)
at normalizeOptions (C:\Users\USER\Documents\Assassin\node_modules\nx\src\executors\run-commands\run-commands.impl.js:104:22)
at C:\Users\USER\Documents\Assassin\node_modules\nx\src\executors\run-commands\run-commands.impl.js:41:28
at Generator.next (<anonymous>)
at fulfilled (C:\Users\USER\Documents\Assassin\node_modules\tslib\tslib.js:115:62)
at processTicksAndRejections (node:internal/process/task_queues:96:5)
—————————————————————————————————————————————————————————————————————————————————————————————
> NX Running target "dashboard:serve" failed
Failed tasks:
- dashboard:serve
Hint: run the command with --verbose for more details.
also the "Hint" is a little weird since I already have the --verbose flag.