You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi guys! I'm running Node v16.5.0 and I'm trying to follow the documentation to enable Vue DevTools, but it is failing when running npm install. One of the warning messages I see before it fails is :
Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.
I've encountered the same issue while creating a new Nova tool, which is caused by the default dev dependencies :
Removing cross-env and bumping Laravel Mix to ^6.0, while adding .vue() to the end of webpack.mix.js and modifying require('./components/Tool') to require('./components/Tool').default made my tool environment work properly.
However, doing the same thing in Nova's vendor folder (and fixing a couple more errors) kept leading to more and more errors.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi guys! I'm running Node v16.5.0 and I'm trying to follow the documentation to enable Vue DevTools, but it is failing when running
npm install
. One of the warning messages I see before it fails is :I've encountered the same issue while creating a new Nova tool, which is caused by the default dev dependencies :
Removing
cross-env
and bumping Laravel Mix to^6.0
, while adding.vue()
to the end ofwebpack.mix.js
and modifyingrequire('./components/Tool')
torequire('./components/Tool').default
made my tool environment work properly.However, doing the same thing in Nova's vendor folder (and fixing a couple more errors) kept leading to more and more errors.
Beta Was this translation helpful? Give feedback.
All reactions