Description
To install/create Next.js applications, it is decided to use the npx create-next-app@latest command with the --example option. It is used custom examples that have a similar structure and functionality as the ones provided by the Next.js team. One doubt that I have is that in those examples, the version of the dependencies is not locked (there is not a package-lock.json file and it is used dependencies like next@latest).
Solution
Analyze if it is correct how dependencies are handled in the examples.
Additional information
Description
To install/create Next.js applications, it is decided to use the
npx create-next-app@latestcommand with the--exampleoption. It is used custom examples that have a similar structure and functionality as the ones provided by the Next.js team. One doubt that I have is that in those examples, the version of the dependencies is not locked (there is not apackage-lock.jsonfile and it is used dependencies likenext@latest).Solution
Analyze if it is correct how dependencies are handled in the examples.
Additional information