Skip to content

fix: default to target: server, not serverless #2060

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/runtime/src/helpers/files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const moveStaticPages = async ({
basePath?: string
}): Promise<void> => {
console.log('Moving static page files to serve from CDN...')
const outputDir = join(netlifyConfig.build.publish, target === 'server' ? 'server' : 'serverless')
const outputDir = join(netlifyConfig.build.publish, target === 'serverless' ? 'serverless' : 'server')
const buildId = readFileSync(join(netlifyConfig.build.publish, 'BUILD_ID'), 'utf8').trim()
const dataDir = join('_next', 'data', buildId)
await ensureDir(join(netlifyConfig.build.publish, dataDir))
Expand Down Expand Up @@ -134,6 +134,7 @@ export const moveStaticPages = async ({
const dest = join(netlifyConfig.build.publish, targetPath)

try {
console.log(`Moving ${source} to ${dest}`)
await move(source, dest)
} catch (error) {
console.warn('Error moving file', source, error)
Expand Down