There was an error loading your Zuplo project. This error occurs at runtime when the project builds successfully but fails to initialize.
Common causes
- Runtime extension errors - Code in a runtime extension throws an error
during initialization. This includes errors in the
runtimeInitor other lifecycle hooks. - Invalid module exports - A module does not export the expected functions or objects that the Zuplo runtime requires.
- Unhandled exceptions at startup - Top-level code in a module throws an exception when the module is first loaded.
- Missing environment variables - Code references an environment variable that is not set, causing a failure during module initialization.
How to debug
- Check the runtime logs in the Zuplo portal for detailed error messages and stack traces.
- Review any runtime extensions for errors in initialization code.
- Verify that all environment variables referenced in the code are configured in the current environment.
- Test the project locally to reproduce the error with full debug output.
This error prevents the entire project from loading. All routes return this error until the underlying issue is resolved and the project is redeployed.
Related resources
Last modified on