You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Copy the NextJS static assets from NextJS distDir to Netlify publish folder.
9
9
// 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
+
10
14
constcopyNextAssets=async(publishPath)=>{
11
15
constnextDistDir=awaitgetNextDistDir()
12
16
conststaticAssetsPath=join(nextDistDir,'static')
13
17
if(!existsSync(staticAssetsPath)){
14
18
thrownewError(
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\`.`,
0 commit comments