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
Copy file name to clipboardExpand all lines: website/static/schema.json
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,31 @@
24
24
"https://staging-registry.com"
25
25
]
26
26
},
27
+
"preload": {
28
+
"description": "List of component dependencies to preload. Preloading components can improve performance by fetching dependencies before they are needed.",
29
+
"type": "array",
30
+
"items": {
31
+
"type": "string",
32
+
"description": "Component name or path to preload"
33
+
},
34
+
"example": [
35
+
"header",
36
+
"footer",
37
+
"common-ui"
38
+
]
39
+
},
40
+
"routes": {
41
+
"description": "Custom routing configuration for components. Allows defining custom URL patterns and mappings for component rendering.",
42
+
"type": "object",
43
+
"additionalProperties": {
44
+
"type": "string",
45
+
"description": "Route pattern mapped to component name or path"
46
+
},
47
+
"example": {
48
+
"/custom-header": "header-component",
49
+
"/api/*": "api-wrapper"
50
+
}
51
+
},
27
52
"development": {
28
53
"description": "Development-specific configuration settings for local development and testing.",
0 commit comments