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 541ff31 commit 3611391Copy full SHA for 3611391
packages/@apphosting/adapter-nextjs/src/bin/build.spec.ts
@@ -65,7 +65,7 @@ metadata:
65
outputFiles:
66
serverApp:
67
include:
68
- - ${outputBundleOptions.outputDirectoryAppPath}
+ - .next/standalone
69
`,
70
};
71
validateTestFiles(tmpDir, expectedFiles);
packages/@apphosting/adapter-nextjs/src/utils.ts
@@ -197,7 +197,7 @@ async function generateBundleYaml(
197
if (!process.env.MONOREPO_COMMAND) {
198
outputBundle.outputFiles = {
199
serverApp: {
200
- include: [opts.outputDirectoryAppPath],
+ include: [normalize(relative(cwd, opts.outputDirectoryAppPath))],
201
},
202
203
}
0 commit comments