react-snap and react-router together make a problem












0














I need to start a react application and I need pre-rendering and routing, so I installed react-snap and react-router. (The react-router to do the routing and react-snap for pre-rendering obviously).



Everything looks fine in the local with 'npm start' but as I make a production build and serve it, the routing links make the page redirect to a new url, so all i see always, is the homepage.



My render looks like this:



 render() {
return (
<Router>
<React.Fragment>
<MainNav/>
<Route exact path="/" component={Home}/>
<Route path="/greeting/:name/:surname" render={(props) => <Greetings text="Hello, " {...props} />} />
<Route path="/About" component={About}/>
</React.Fragment>
</Router>
);
}


and this is my index.js as suggested by react-snap



import React from 'react';
import { hydrate, render } from "react-dom";
import './index.css';
import App from './App';
import * as serviceWorker from './serviceWorker';

const rootElement = document.getElementById("root");
if (rootElement.hasChildNodes()) {
hydrate(<App />, rootElement);
} else {
render(<App />, rootElement);
}

serviceWorker.unregister();


any ideas?










share|improve this question



























    0














    I need to start a react application and I need pre-rendering and routing, so I installed react-snap and react-router. (The react-router to do the routing and react-snap for pre-rendering obviously).



    Everything looks fine in the local with 'npm start' but as I make a production build and serve it, the routing links make the page redirect to a new url, so all i see always, is the homepage.



    My render looks like this:



     render() {
    return (
    <Router>
    <React.Fragment>
    <MainNav/>
    <Route exact path="/" component={Home}/>
    <Route path="/greeting/:name/:surname" render={(props) => <Greetings text="Hello, " {...props} />} />
    <Route path="/About" component={About}/>
    </React.Fragment>
    </Router>
    );
    }


    and this is my index.js as suggested by react-snap



    import React from 'react';
    import { hydrate, render } from "react-dom";
    import './index.css';
    import App from './App';
    import * as serviceWorker from './serviceWorker';

    const rootElement = document.getElementById("root");
    if (rootElement.hasChildNodes()) {
    hydrate(<App />, rootElement);
    } else {
    render(<App />, rootElement);
    }

    serviceWorker.unregister();


    any ideas?










    share|improve this question

























      0












      0








      0







      I need to start a react application and I need pre-rendering and routing, so I installed react-snap and react-router. (The react-router to do the routing and react-snap for pre-rendering obviously).



      Everything looks fine in the local with 'npm start' but as I make a production build and serve it, the routing links make the page redirect to a new url, so all i see always, is the homepage.



      My render looks like this:



       render() {
      return (
      <Router>
      <React.Fragment>
      <MainNav/>
      <Route exact path="/" component={Home}/>
      <Route path="/greeting/:name/:surname" render={(props) => <Greetings text="Hello, " {...props} />} />
      <Route path="/About" component={About}/>
      </React.Fragment>
      </Router>
      );
      }


      and this is my index.js as suggested by react-snap



      import React from 'react';
      import { hydrate, render } from "react-dom";
      import './index.css';
      import App from './App';
      import * as serviceWorker from './serviceWorker';

      const rootElement = document.getElementById("root");
      if (rootElement.hasChildNodes()) {
      hydrate(<App />, rootElement);
      } else {
      render(<App />, rootElement);
      }

      serviceWorker.unregister();


      any ideas?










      share|improve this question













      I need to start a react application and I need pre-rendering and routing, so I installed react-snap and react-router. (The react-router to do the routing and react-snap for pre-rendering obviously).



      Everything looks fine in the local with 'npm start' but as I make a production build and serve it, the routing links make the page redirect to a new url, so all i see always, is the homepage.



      My render looks like this:



       render() {
      return (
      <Router>
      <React.Fragment>
      <MainNav/>
      <Route exact path="/" component={Home}/>
      <Route path="/greeting/:name/:surname" render={(props) => <Greetings text="Hello, " {...props} />} />
      <Route path="/About" component={About}/>
      </React.Fragment>
      </Router>
      );
      }


      and this is my index.js as suggested by react-snap



      import React from 'react';
      import { hydrate, render } from "react-dom";
      import './index.css';
      import App from './App';
      import * as serviceWorker from './serviceWorker';

      const rootElement = document.getElementById("root");
      if (rootElement.hasChildNodes()) {
      hydrate(<App />, rootElement);
      } else {
      render(<App />, rootElement);
      }

      serviceWorker.unregister();


      any ideas?







      react-router create-react-app






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 11 at 13:13









      Amir Shahbabaie

      501213




      501213
























          2 Answers
          2






          active

          oldest

          votes


















          0














          I've been battling this for a couple weeks now. The main thing I've noticed is that if I call registerServiceWorker() in index.js, the app will function normally after building. If I comment out this line the app only routes to '/' no matter what.



          It appears you are unregistering the service worker in your index.js, this might cause an issue.



          A catch 22 I've run into and haven't been able to solve is that if I use the registerServiceWorker() call in index.js, react-snap doesn't properly prerender all the routes, and if I do comment out the registerServiceWorker() line, react-snap prerenders all routes perfectly, but the app doesnt navigate.



          It's also worth noting that my project was created using 'create-react-app' and hasnt been ejected.






          share|improve this answer





























            0














            I've been able to fix a similar issue by adding the following snippet to my package.json



            "reactSnap": {
            "fixWebpackChunksIssue": false
            }


            Check the following link for more information and other options



            https://github.com/stereobooster/react-snap/issues/264






            share|improve this answer























              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53249090%2freact-snap-and-react-router-together-make-a-problem%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0














              I've been battling this for a couple weeks now. The main thing I've noticed is that if I call registerServiceWorker() in index.js, the app will function normally after building. If I comment out this line the app only routes to '/' no matter what.



              It appears you are unregistering the service worker in your index.js, this might cause an issue.



              A catch 22 I've run into and haven't been able to solve is that if I use the registerServiceWorker() call in index.js, react-snap doesn't properly prerender all the routes, and if I do comment out the registerServiceWorker() line, react-snap prerenders all routes perfectly, but the app doesnt navigate.



              It's also worth noting that my project was created using 'create-react-app' and hasnt been ejected.






              share|improve this answer


























                0














                I've been battling this for a couple weeks now. The main thing I've noticed is that if I call registerServiceWorker() in index.js, the app will function normally after building. If I comment out this line the app only routes to '/' no matter what.



                It appears you are unregistering the service worker in your index.js, this might cause an issue.



                A catch 22 I've run into and haven't been able to solve is that if I use the registerServiceWorker() call in index.js, react-snap doesn't properly prerender all the routes, and if I do comment out the registerServiceWorker() line, react-snap prerenders all routes perfectly, but the app doesnt navigate.



                It's also worth noting that my project was created using 'create-react-app' and hasnt been ejected.






                share|improve this answer
























                  0












                  0








                  0






                  I've been battling this for a couple weeks now. The main thing I've noticed is that if I call registerServiceWorker() in index.js, the app will function normally after building. If I comment out this line the app only routes to '/' no matter what.



                  It appears you are unregistering the service worker in your index.js, this might cause an issue.



                  A catch 22 I've run into and haven't been able to solve is that if I use the registerServiceWorker() call in index.js, react-snap doesn't properly prerender all the routes, and if I do comment out the registerServiceWorker() line, react-snap prerenders all routes perfectly, but the app doesnt navigate.



                  It's also worth noting that my project was created using 'create-react-app' and hasnt been ejected.






                  share|improve this answer












                  I've been battling this for a couple weeks now. The main thing I've noticed is that if I call registerServiceWorker() in index.js, the app will function normally after building. If I comment out this line the app only routes to '/' no matter what.



                  It appears you are unregistering the service worker in your index.js, this might cause an issue.



                  A catch 22 I've run into and haven't been able to solve is that if I use the registerServiceWorker() call in index.js, react-snap doesn't properly prerender all the routes, and if I do comment out the registerServiceWorker() line, react-snap prerenders all routes perfectly, but the app doesnt navigate.



                  It's also worth noting that my project was created using 'create-react-app' and hasnt been ejected.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 27 at 21:28









                  UberCptNerd

                  113




                  113

























                      0














                      I've been able to fix a similar issue by adding the following snippet to my package.json



                      "reactSnap": {
                      "fixWebpackChunksIssue": false
                      }


                      Check the following link for more information and other options



                      https://github.com/stereobooster/react-snap/issues/264






                      share|improve this answer




























                        0














                        I've been able to fix a similar issue by adding the following snippet to my package.json



                        "reactSnap": {
                        "fixWebpackChunksIssue": false
                        }


                        Check the following link for more information and other options



                        https://github.com/stereobooster/react-snap/issues/264






                        share|improve this answer


























                          0












                          0








                          0






                          I've been able to fix a similar issue by adding the following snippet to my package.json



                          "reactSnap": {
                          "fixWebpackChunksIssue": false
                          }


                          Check the following link for more information and other options



                          https://github.com/stereobooster/react-snap/issues/264






                          share|improve this answer














                          I've been able to fix a similar issue by adding the following snippet to my package.json



                          "reactSnap": {
                          "fixWebpackChunksIssue": false
                          }


                          Check the following link for more information and other options



                          https://github.com/stereobooster/react-snap/issues/264







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Nov 27 at 22:07

























                          answered Nov 27 at 21:55









                          olecve

                          11




                          11






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.





                              Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                              Please pay close attention to the following guidance:


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53249090%2freact-snap-and-react-router-together-make-a-problem%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              這個網誌中的熱門文章

                              Tangent Lines Diagram Along Smooth Curve

                              Yusuf al-Mu'taman ibn Hud

                              Zucchini