I am trying to install my app with Quick start for on a next-js project but apparently
the BuilderDevTools is missing in the dependencies :
I get this error when running npm run dev :
⨯ Unable to acquire lock at C:\Users\Admin\OneDrive\Documents\EcommFox_Digital\Ecommfox\Porfolio\builder-app\.next\dev\lock, is another instance of next dev running?
Suggestion: If you intended to restart next dev, terminate the other process, and then try again.
I ran the Quickstart command as shown in the documentation
Builder was intalled correctly but had to run npm install once more because of missing dependecies :
made sure all the version are up to date : node , next-js , react
Could you please confirm which version of Next.js you are currently using?
We attempted to reproduce the issue on our end using "next": "16.1.6" but were unable to replicate the same error. That said, we have seen some issues when using DevTools with Next.js Turbopack, so we want to confirm whether that might be a factor in your setup.
@manish-sharma I found there were several issue in my setup :
Node.js was not up to date , so to avoid having the isolated-vm issue, making sure to have the latest version of node.js is the best solution .
Other fix : import { BuilderDevTools } from '@builder.io/dev-tools/next'; did not work after running a new build, builder.io was reinstalled with all the dependencies but I had to import NextBuilderDevTools in my next.js config .