(projectPath: string)
| 466 | ) |
| 467 | } |
| 468 | function isUsingAppDir(projectPath: string): boolean { |
| 469 | return ( |
| 470 | fs.existsSync(path.resolve(projectPath, 'app')) || |
| 471 | fs.existsSync(path.resolve(projectPath, 'src/app')) |
| 472 | ) |
| 473 | } |
| 474 | |
| 475 | /* |
| 476 | * Heuristics are used to determine whether to Turbopack is enabled or not and |