createStylesheetElementSet() — astro Function Reference
Architecture documentation for the createStylesheetElementSet() function in ssr-element.ts from the astro codebase.
Entity Profile
Dependency Diagram
graph TD 5529c158_7faa_42c8_94fe_f80d07922651["createStylesheetElementSet()"] 0bd2e8b9_eb60_d252_4865_5b65ac27a240["ssr-element.ts"] 5529c158_7faa_42c8_94fe_f80d07922651 -->|defined in| 0bd2e8b9_eb60_d252_4865_5b65ac27a240 5dc18e6d_4a24_c02c_4743_89d3dc0d96a9["createStylesheetElement()"] 5529c158_7faa_42c8_94fe_f80d07922651 -->|calls| 5dc18e6d_4a24_c02c_4743_89d3dc0d96a9 style 5529c158_7faa_42c8_94fe_f80d07922651 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/astro/src/core/render/ssr-element.ts lines 49–58
export function createStylesheetElementSet(
stylesheets: StylesheetAsset[],
base?: string,
assetsPrefix?: AssetsPrefix,
queryParams?: URLSearchParams,
): Set<SSRElement> {
return new Set(
stylesheets.map((s) => createStylesheetElement(s, base, assetsPrefix, queryParams)),
);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does createStylesheetElementSet() do?
createStylesheetElementSet() is a function in the astro codebase, defined in packages/astro/src/core/render/ssr-element.ts.
Where is createStylesheetElementSet() defined?
createStylesheetElementSet() is defined in packages/astro/src/core/render/ssr-element.ts at line 49.
What does createStylesheetElementSet() call?
createStylesheetElementSet() calls 1 function(s): createStylesheetElement.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free