I have the same error but using laravel + vite + vue3.
The error was in my .env file. There was a circular reference
APP_URL="${APP_URL}"
it should have been
VITE_APP_URL="${APP_URL}"
I looked for hours for this as on other servers npm run build
was working,