/** * Styles CSS Import Scanner * * Discovers CSS files imported by project source modules (side-effect imports * like `import "./styles.css"` in app/layout.tsx, `@/` alias imports, and CSS * module imports). The production SSR pipeline collects these imports while * loading modules and merges them into the page stylesheet; the page-agnostic * /_vf_styles/styles.css dev route has no module-loading pass, so this scanner * recovers the same information from project sources using the shared * css-import-extraction helpers. * * @module server/handlers/dev/styles-css-import-scanner */ import type { HandlerContext } from "../types.js"; /** * Scan project source files for CSS imports and return the resolved absolute * paths, deduplicated. Mirrors the file coverage of the Tailwind candidate * scanner: the FS adapter's `getAllSourceFiles()` in proxy/remote mode, and a * recursive local walk otherwise. */ export declare function extractProjectCssImports(ctx: HandlerContext): Promise; //# sourceMappingURL=styles-css-import-scanner.d.ts.map