(appName: string, ts: boolean)
| 411 | } |
| 412 | |
| 413 | async function downloadTheme(appName: string, ts: boolean) { |
| 414 | process.chdir(resolve(cwd(), `./${appName}`)) |
| 415 | await buildTheme({ |
| 416 | theme: 'regenesis', |
| 417 | format: ts ? 'ts' : 'mjs', |
| 418 | }) |
| 419 | process.chdir(resolve(cwd(), `../`)) |
| 420 | } |
| 421 | |
| 422 | /** |
| 423 | * Sets up the Vite config with Tailwind CSS 4. |
no test coverage detected