Skip to content
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

fix: add details to copyNextAssets error messaging #410

Merged
merged 2 commits into from
Jun 25, 2021
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
6 changes: 5 additions & 1 deletion src/lib/steps/copyNextAssets.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,16 @@ const { logTitle } = require('../helpers/logger')

// Copy the NextJS static assets from NextJS distDir to Netlify publish folder.
// These need to be available for NextJS to work.

// Note: If you're using a custom build setup, such as a monorepo,
// you may need to explicitly set distDir in your next.config.js.

const copyNextAssets = async (publishPath) => {
const nextDistDir = await getNextDistDir()
const staticAssetsPath = join(nextDistDir, 'static')
if (!existsSync(staticAssetsPath)) {
throw new Error(
'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`.',
`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\`.`,
)
}
logTitle('💼 Copying static NextJS assets to', publishPath)
Expand Down