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: docs/config/build-options.md
+3-2
Original file line number
Diff line number
Diff line change
@@ -41,12 +41,13 @@ type ResolveModulePreloadDependenciesFn = (
41
41
url:string,
42
42
deps:string[],
43
43
context: {
44
-
importer:string
44
+
hostId:string
45
+
hostType:'html'|'js'
45
46
},
46
47
) =>string[]
47
48
```
48
49
49
-
The `resolveDependencies` function will be called for each dynamic import with a list of the chunks it depends on, and it will also be called for each chunk imported in entry HTML files. A new dependencies array can be returned with these filtered or more dependencies injected, and their paths modified. The `deps` paths are relative to the `build.outDir`. Returning a relative path to the `hostId` for `hostType === 'js'` is allowed, in which case `newURL(dep, import.meta.url)` is used to get an absolute path when injecting this module preload in the HTML head.
50
+
The `resolveDependencies` function will be called for each dynamic import with a list of the chunks it depends on, and it will also be called for each chunk imported in entry HTML files. A new dependencies array can be returned with these filtered or more dependencies injected, and their paths modified. The `deps` paths are relative to the `build.outDir`. The return value should be a relative path to the `build.outDir`.
0 commit comments