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: packages/docs/src/routes/api/qwik-optimizer/api.json
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -20,18 +20,18 @@
20
20
"mdFile": "qwik.path.basename.md"
21
21
},
22
22
{
23
-
"name": "BundleGraphModifier",
24
-
"id": "bundlegraphmodifier",
23
+
"name": "BundleGraphAdder",
24
+
"id": "bundlegraphadder",
25
25
"hierarchy": [
26
26
{
27
-
"name": "BundleGraphModifier",
28
-
"id": "bundlegraphmodifier"
27
+
"name": "BundleGraphAdder",
28
+
"id": "bundlegraphadder"
29
29
}
30
30
],
31
31
"kind": "TypeAlias",
32
-
"content": "A function that creates a modified version of the bundle graph. Used to inject routes and their dependencies into the bundle graph.\n\n\n```typescript\nexport type BundleGraphModifier = (graph: QwikBundleGraph, manifest: QwikManifest) => QwikBundleGraph;\n```\n**References:** [QwikBundleGraph](#qwikbundlegraph)<!-- -->, [QwikManifest](#qwikmanifest)",
32
+
"content": "A function that returns a map of bundle names to their dependencies.\n\n\n```typescript\nexport type BundleGraphAdder = (manifest: QwikManifest) => Record<string, {\n imports?: string[];\n dynamicImports?: string[];\n}>;\n```\n**References:** [QwikManifest](#qwikmanifest)",
0 commit comments