Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

[Sugestão] Sobre o next export

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
1 resposta
solução!

Oii, Henry. Tudo bem?

Muito obrigada por compartilhar com a gente a sua sugestão. Com certeza vai ajudar outras pessoas.

Um abraço e bons estudos.