We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f708b9e commit a22836fCopy full SHA for a22836f
backend/src/build-system/handlers/frontend-code-generate/prompt.ts
@@ -63,13 +63,18 @@ export const generateFrontEndCodePrompt = (
63
64
export function generateCSSPrompt(
65
fileName: string,
66
+ sitemapDoc: string,
67
+ uxDatamapDoc: string,
68
directDependencies: string,
69
dependenciesContext: string,
70
): string {
71
return `
72
You are an expert CSS developer. Generate valid, production-ready CSS for the file "${fileName}".
73
74
## Context
75
+ - Sitemap Documentation: ${sitemapDoc}
76
+ - UX Datamap Documentation: ${uxDatamapDoc}
77
+
78
- Direct Dependencies (if any and may include references to other styles or partials):
79
${directDependencies}
80
0 commit comments