Para quem está fazendo esse curso depois da versão 14.0.0 do Next, o comando "next export" foi removido e no lugar dele, para fazer uma build estática nós devemos configurar a build( next build ) para que ela aja como o next export, conforme diz a documentação oficial:
crie o arquivo **next.config.js ** e coloque essas configurações:
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
output: 'export',
// Optional: Change links `/me` -> `/me/` and emit `/me.html` -> `/me/index.html`
// trailingSlash: true,
// Optional: Prevent automatic `/me` -> `/me/`, instead preserve `href`
// skipTrailingSlashRedirect: true,
// Optional: Change the output directory `out` -> `dist`
// distDir: 'dist',
}
module.exports = nextConfig