We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This framework doesn't work with standard JavaScript module semantic because of a circular dependency on required configuration.
For example in the official example, MyActivity.tsx module and stackflow.ts have circular dependency, which will never work with errors like:
MyActivity.tsx
stackflow.ts
Uncaught ReferenceError: Cannot access 'MyActivity' before initialization at stackflow.ts:10:5
Or users should use bundlers to inject bundler-specific runtime behavior. That means its behavior is essentially not reliable
The text was updated successfully, but these errors were encountered:
This also results in cycles with some hot-reloaded environments.
Sorry, something went wrong.
No branches or pull requests
This framework doesn't work with standard JavaScript module semantic because of a circular dependency on required configuration.
For example in the official example,
MyActivity.tsx
module andstackflow.ts
have circular dependency, which will never work with errors like:Or users should use bundlers to inject bundler-specific runtime behavior. That means its behavior is essentially not reliable
The text was updated successfully, but these errors were encountered: