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 a7c7e30 commit a80af76Copy full SHA for a80af76
packages/@apphosting/adapter-nextjs/src/utils.ts
@@ -203,7 +203,8 @@ async function generateBundleYaml(
203
}
204
205
await writeFile(opts.bundleYamlPath, yamlStringify(outputBundle));
206
- UpdateOrCreateGitignore(cwd, ["/.apphosting/"]);
+ const normalizedBundleDir = normalize(relative(cwd, opts.outputDirectoryBasePath));
207
+ UpdateOrCreateGitignore(cwd, [`/${normalizedBundleDir}/`]);
208
return;
209
210
0 commit comments