Giter VIP home page Giter VIP logo

Comments (6)

tirthbodawala avatar tirthbodawala commented on May 12, 2024

@lukaszzdanikowski I tried replicating the bug, but it worked perfectly.
Here is what I did in the repo to replicate it:

  1. Created test.json in src/public/test.json with data:
[{
  "id": 1,
  "text": "test1"
}, {
  "id": 2,
  "text": "test2"
}]
  1. Edited src/pages/blog.js to look as below:
const routes = [
  {
    path: "/blog",
    exact: true,
    layout: DefaultLayout,
    component: BlogListing,
    preLoadData: async ({ api, host }) => {


      //// ---->>> Test code in preLoadData <<<----
      console.log(await api.fetch(`${host}/test.json`));
      //// ---->>> Test code in preLoadData <<<----

      return api.fetch("https://www.atyantik.com/wp-json/wp/v2/posts", { swcache: 20000 });
    },
  },
  {
    path: "/blog/:id",
    layout: DefaultLayout,
    component: BlogPost,
    preLoadData: async ({match, api}) => {
      const { params } = match;
      return api.fetch(`https://www.atyantik.com/wp-json/wp/v2/posts/${params.id}`, { swcache: 20000 });
    },
  }
];

export default routes;
  1. Ran it in development mode and got the output as expected
// npm start
[{"id":1,"text":"test1"},{"id":2,"text":"test2"}]
  1. Ran it in production mode and got the same output
// npm run build && node dist/server.js
[{"id":1,"text":"test1"},{"id":2,"text":"test2"}]

Did I missed anything?

from react-pwa.

tirthbodawala avatar tirthbodawala commented on May 12, 2024

@lukaszzdanikowski any updates?

from react-pwa.

lukaszzdanikowski avatar lukaszzdanikowski commented on May 12, 2024

@tirthbodawala If you go through home, so first localhost:3003/ then click blog in navigation everything is ok, but if go directly to localhost:3003/blog you should be able to see this error in the console.

from react-pwa.

tirthbodawala avatar tirthbodawala commented on May 12, 2024

working json file
@lukaszzdanikowski I tried it on my machine, unable to replicate it. Can you please provide more details?

from react-pwa.

lukaszzdanikowski avatar lukaszzdanikowski commented on May 12, 2024

@tirthbodawala sorry it must have been some weird dependency issue cause when i removed node_modules and run npm install once again the error doesn't occur any more.

from react-pwa.

tirthbodawala avatar tirthbodawala commented on May 12, 2024

@lukaszzdanikowski No problem, am glad the issue is solved.

from react-pwa.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.