(path)
| 11 | const nextConfig = new File(join(appDir, 'next.config.js')) |
| 12 | |
| 13 | const fileExist = (path) => |
| 14 | access(path) |
| 15 | .then(() => stat(path)) |
| 16 | .then((stats) => (stats.isFile() ? true : false)) |
| 17 | .catch(() => false) |
| 18 | |
| 19 | // Issue #36855 |
| 20 | // https://github.com/vercel/next.js/issues/36855 |
no test coverage detected