Yang-Hsing Lin
Yang-Hsing Lin
Hi @bolicd , I think the CORS setting should be done on the API server side instead of here (the universal-rendered app should act as client side when calling the...
Hi @bolicd , For 1, may I have the route/url when you encountered this issue? For 2, is it test-prebuild command? (`yarn test:prebuild`)
Hi @bolicd , For the generator part, I update the code in [this commit](https://github.com/mz026/universal-redux-template/commit/54c5c77be5a29394bcfad3230af701e491dff242) to create directories by [node-mkdirp](https://github.com/substack/node-mkdirp). Can you please fetch the latest `master` branch to see if...
Hi @bolicd , For the checksum issue, looks like the client code didn't catch the update from `Page` to `Pagexxx`. Can you check are there any `js` files in your...
I think it's because I used `sed` command which only works on *nix os. I guess [shelljs](https://github.com/shelljs/shelljs) can solve this issue, will add it later.
hi @sabervision , can you check is there any js file in your dist folder? If there are, please remove them any try again.
HI @sabervision , Good to know it works! There should not be any side effect for deleting files in `dist` folder, it's used for production build. The current config of...
hi @shahidarzoo007 , Thanks for checking in! Can you please try to remove the `dist` folder and see if the issue persists?
From the error message, it seems NodeJS tried to run ES6 without babel. To run server side code without pre-built with babel (like in development), we should point the entry...
Hi @jeysal , thanks for the suggestion! Can you please elaborate more about how to implement the `saveTestState` and `ifTestFailed` ?