We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d6ee74 commit be9d381Copy full SHA for be9d381
packages/@apphosting/adapter-nextjs/e2e/run-local.ts
@@ -58,9 +58,10 @@ const scenarios: Scenario[] = [
58
setup: async (cwd: string) => {
59
const configContent = scenario.config;
60
const files = await fsExtra.readdir(cwd);
61
- const configFiles = files.filter(file => file.startsWith('next.config.'))
62
- .map(file => join(cwd, file));
63
-
+ const configFiles = files
+ .filter((file) => file.startsWith("next.config."))
+ .map((file) => join(cwd, file));
64
+
65
for (const file of configFiles) {
66
await fsExtra.remove(file);
67
console.log(`Removed existing config file: ${file}`);
0 commit comments