(type)
| 1 | const fs = require('fs'); |
| 2 | |
| 3 | function getPath(type) { |
| 4 | return [ |
| 5 | `${process.cwd()}/src/app/${type}/[section]/page.tsx`, |
| 6 | `${process.cwd()}/src/app/${type}/[section]/[slug]/page.tsx` |
| 7 | ]; |
| 8 | } |
| 9 | |
| 10 | async function main() { |
| 11 | const runTime = `export const runtime = 'edge';\n\n`; |