You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Prefer static imports over dynamic imports.** Only use dynamic `import()` when:
74
+
- Circular dependencies cannot be resolved otherwise
75
+
- Code splitting is genuinely needed for performance
76
+
- The module must be loaded conditionally at runtime
77
+
78
+
Dynamic imports add unnecessary overhead in hot paths and make code harder to analyze. If you find yourself using `await import()`, ask if a regular `import` statement would work instead.
79
+
69
80
## Changesets and Server Changes
70
81
71
82
When modifying any public package (`packages/*` or `integrations/*`), add a changeset:
0 commit comments