We had upgrade to node 17.4.0. After that Storybook started giving error on start:
Error: error:0308010C:digital envelope routines::unsupported
From what I found it's because we use 17.x node. But unfortunately we can't downgrade, so I wanted to have two versions of node and be able to switch between them depending on what I do. I installed 16.x node: nvm install v16.14.2
If I check currently used node version it will be 16.x, but when I run npm run storybook
I see that it starts with version 17.x and fails. How can I setup my Storybook to be launching with version 16.x?