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
- Work across different frameworks (React, Vue, Angular, etc.)
25
27
- Can be deployed and updated independently
26
28
- Have their own server-side logic and data fetching
@@ -36,15 +38,15 @@ For **creating** components: Basic Node.js knowledge is helpful, but our [Quick
36
38
### What's the difference between rendered and un-rendered components?
37
39
38
40
Un-rendered components delegate the rendering to the clients. This is useful for performance and cacheability.
39
-
[More details about rendered components](architecture-overview#consuming-rendered-components) and about [un-rendered components](architecture-overview#consuming-un-rendered-components)
41
+
[More details about rendered components](../concepts/architecture-overview#consuming-rendered-components) and about [un-rendered components](../concepts/architecture-overview#consuming-un-rendered-components)
40
42
41
43
## What happens when a publish is made?
42
44
43
-
[Look at this page](architecture-overview#what-happens-when-a-publish-is-made)
45
+
[Look at this page](../concepts/architecture-overview#what-happens-when-a-publish-is-made)
44
46
45
47
## How the distribution works?
46
48
47
-
[Look at this page](architecture-overview#how-distribution-works)
49
+
[Look at this page](../concepts/architecture-overview#how-distribution-works)
48
50
49
51
## Can I link a CDN on top of the S3 bucket?
50
52
@@ -73,13 +75,14 @@ For example, at OpenTable we do logging with the ELK stack for business metrics,
73
75
74
76
## Can I setup a debugger with Visual Studio Code?
75
77
76
-
Yes, [look at this page](debugging).
78
+
Yes, [look at this page](../building/debugging).
77
79
78
80
## Performance Questions
79
81
80
82
### How does OpenComponents affect page load performance?
81
83
82
84
OpenComponents can improve performance through:
85
+
83
86
-**Caching**: Components are cached at multiple levels
84
87
-**CDN delivery**: Static assets served from CDN
85
88
-**Lazy loading**: Components can be loaded on-demand
@@ -104,12 +107,14 @@ Yes! OpenComponents works excellently with CDNs. Set the `s3.path` property in y
104
107
### My component shows "Loading..." forever
105
108
106
109
**Common causes:**
110
+
107
111
1.**Registry not accessible** - Check if the registry URL is reachable
108
112
2.**JavaScript errors** - Check browser console for errors
109
113
3.**Template compilation errors** - Verify your template syntax
0 commit comments