next.js / packages /next /src /cli /next-export.ts
AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
import { cyan } from '../lib/picocolors'
import { error } from '../build/output/log'
const nextExport = () => {
error(`
\`next export\` has been removed in favor of 'output: export' in next.config.js.\nLearn more: ${cyan(
'https://nextjs.org/docs/app/building-your-application/deploying/static-exports'
)}
`)
process.exit(1)
}
export { nextExport }