(templateName: TemplateName)
| 39 | | "css-with-floated-link" |
| 40 | | "rsc-server-first-route"; |
| 41 | const getRouteBasePaths = (templateName: TemplateName) => { |
| 42 | return [ |
| 43 | "css-with-links-export", |
| 44 | "css-with-floated-link", |
| 45 | ...(templateName.includes("rsc") |
| 46 | ? (["rsc-server-first-route"] as const) |
| 47 | : []), |
| 48 | ] as const satisfies RouteBasePath[]; |
| 49 | }; |
| 50 | |
| 51 | const files = ({ templateName }: { templateName: TemplateName }) => ({ |
| 52 | "postcss.config.js": js` |
no outgoing calls
no test coverage detected
searching dependent graphs…