I have a lot of environmental variables. I realized that if one is left out, Nuxt will throw an infinite stream of the same error, crashing the app, like so:
WARN [Vue Router warn]: No match found for location with path "/api/merchants"
WARN [Vue Router warn]: No match found for location with path "/api/merchants"
This is easily handled by simply checking the env has a value before using it and throwing an error if not. But im curious if this shouldnt be handled a bit more gracefully by Nuxt or if Im missing something?