Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

117
Visualizações
How can I get the all html code into view page source as I am developing a project in NEXT.js

I am developing a project where i am using NEXT.js but there i am getting a issue like i am not getting the all html value in view page source. I think my problems in _app.js my code is below and screenshot also...

_app.js

import { useState } from "react";
import Router from "next/router";
import { Provider } from "react-redux";
import store from "../store/index";
import Layout from "../utils/Layout";
import Spinner from "../utils/Spinner";

import "bootstrap/dist/css/bootstrap.min.css";
import "../styles/cardDesign-swiper.css";
import "../styles/dashboard.css";
import "../styles/index.css";


function MyApp({ Component, pageProps }) {
    const [loading, setLoading] = useState(true);

    Router.onRouteChangeStart = () => {
        setLoading(true);
    };
    Router.onRouteChangeComplete = () => {
        setLoading(false);
    };

    return (
        <>
            {loading && <Spinner width={120} />}
            {!loading && (
                <Provider store={store}>
                    <div suppressHydrationWarning>
                        {typeof window === "undefined" ? null : (
                            <Layout>
                                <Component {...pageProps} />
                            </Layout>
                        )}
                    </div>
                </Provider>
            )}
        </>
    );
}

export default MyApp;

In inspect element I am getting all actual value but not getting the value in view page source so please help me to achieve this thing. enter image description here

What I am getting on view page source is...

enter image description here

about 4 years ago · Juan Pablo Isaza
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda