Skip to content

Commit 1c06d13

Browse files
tmilewskiascorbic
andauthored
fix: clearer error messaging (#410)
To help with debugging across environments Co-authored-by: Matt Kane <[email protected]>
1 parent 761ea5f commit 1c06d13

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/lib/steps/copyNextAssets.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,16 @@ const { logTitle } = require('../helpers/logger')
77

88
// Copy the NextJS static assets from NextJS distDir to Netlify publish folder.
99
// These need to be available for NextJS to work.
10+
11+
// Note: If you're using a custom build setup, such as a monorepo,
12+
// you may need to explicitly set distDir in your next.config.js.
13+
1014
const copyNextAssets = async (publishPath) => {
1115
const nextDistDir = await getNextDistDir()
1216
const staticAssetsPath = join(nextDistDir, 'static')
1317
if (!existsSync(staticAssetsPath)) {
1418
throw new Error(
15-
'No static assets found in .next dist (aka no /.next/static). Please check your project configuration. Your next.config.js must be one of `serverless` or `experimental-serverless-trace`. Your build command should include `next build`.',
19+
`No static assets found in your distDir (missing /static in ${nextDistDir}). Please check your project configuration. Your next.config.js must be one of \`serverless\` or \`experimental-serverless-trace\`. Your build command should include \`next build\`.`,
1620
)
1721
}
1822
logTitle('💼 Copying static NextJS assets to', publishPath)

0 commit comments

Comments
 (0)