next.js/packages/next/src/cli/next-export.ts
next-export.ts15 lines372 B
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 }
Quest for Codev2.0.0
/
SIGN IN