After using the bun create [..]
command to easily create a react
and a next
project by following the instructions on the bun git repository (note: additional instructions are available at bun.sh), I encountered a problem with setting up quasar
/vue
.
While I was able to successfully install quasar
using bun:
bun install -g @quasar/cli
The issue arose when I attempted to create a quasar project:
quasar create [..]
This resulted in an error message:
/usr/bin/env: ‘node’: Permission denied
/usr/bin/env: ‘node’: No such file or directory
It seems like quasar
is trying to use the node
executable instead of bun
.
Does anyone have any suggestions on how to make it work with quasar
/vue
?