Problem
package.json still uses the Vue CLI scaffold default name:
{
"name": "vue-project",
...
}
This is the generic placeholder generated by npm create vue@latest and was never updated to reflect the actual project name.
Expected
{
"name": "range42-deployer-ui",
...
}
Impact
Cosmetic but affects tooling that reads package.json (e.g. Docker labels, npm scripts, lock file references).
Problem
package.jsonstill uses the Vue CLI scaffold default name:{ "name": "vue-project", ... }This is the generic placeholder generated by
npm create vue@latestand was never updated to reflect the actual project name.Expected
{ "name": "range42-deployer-ui", ... }Impact
Cosmetic but affects tooling that reads
package.json(e.g. Docker labels, npm scripts, lock file references).