-
Notifications
You must be signed in to change notification settings - Fork 6.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uncaught SyntaxError: Unexpected token < #1676
Comments
Have you tried clearing your cache ? |
From the Error message, it seems like your server is returning a html file response to your With react-router the routing is done on the client so the server is configured to serve the For some reason the |
I have this issue also when I deploy new version |
@nhducit I tried your suggestion but the ServiceWorker caches index.html (and main.*.js) regardless of the server headers so there were still requests for chunks that had been replaced by a more recent deploy. I've implemented this as a solution instead: https://zach.codes/handling-client-side-app-updates-with-service-workers/ |
Ah, I forget to tell you that I disabled offline plugin because I got some
caching issue with it
…On Wed, May 17, 2017 at 5:59 PM Julien Benchetrit ***@***.***> wrote:
@nhducit <https://github.com/nhducit> I tried your suggestion but the
ServiceWorker caches index.html (and main.*.js) regardless of the server
headers so there were still requests for chunks that had been replaced by a
more recent deploy.
I've implemented this as a solution instead:
https://zach.codes/handling-client-side-app-updates-with-service-workers/
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1676 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AEDKoNKgBIX_lAsaBM4V4GgklpU4ISm0ks5r6tL-gaJpZM4MvZpM>
.
|
Pointing out an observation. I found that app.get('*') always serves index.html. This is the root cause of this bug. Like when a resource is not found or somehow the build is broken even, this issue can come over. I guess the exact requested file being served will help? And what about serving sw.js in case when an asset is not found there? |
Please have a look at this related issue. Our development server serves sw.js with |
Not sure but you may want to simply not serve the offline plugin in development. I have this at the bottom of app.js: if (process.env.NODE_ENV === 'production') {
const OfflinePluginRuntime = require('offline-plugin/runtime'); // eslint-disable-line global-require
OfflinePluginRuntime.install({
// Tells to new SW to take control immediately
onUpdateReady: () => OfflinePluginRuntime.applyUpdate(),
// Tells the UpdateLink component to reload into the new version
onUpdated: () => {
window.swUpdate = true;
},
});
} |
As for production, I use Firebase hosting so I only needed to add this to my firebase.json:
|
@yantakus how do you run it in development servers? as |
@julienben Never wrap runtime initialization in a condition as stated here, in this case your events won't get fired. It won't be installed in development anyway, because it is generated by webpack only in production. I experimented myself and I didn't get the events fired when I had plugin installation inside condition. @varghesethomase by development server I meant |
@yantakus Thanks for the tips! Strange given that the condition should always be true in production but I'll assume it's just webpack magic. Also, note that it's present in app.js of the boilerplate's demo app. Btw, the custom Link component has worked very well for me. One caveat though: I was forced to change the authentication routes. As a consequence, users with cached versions of the app would be trying to login through an invalid route until they manually updated the SW. It happened before the app went public but might have been a serious problem if not. |
Back to the original issue. Me and my team realized why this happens: when you build a new version, new chunks are generated and the old ones are deleted. But the index.html file is not refreshed and it still links to the old chunks which are not there anymore. Because all the non-asset URLs are rewritten to index.html, server responds with 404 page instead of the missing chunks. |
@yantakus This is pretty much the solution I used. Also I found out my teammates were still reflexively using Link so I wrote a tiny ESLint rule to protect from that. |
I got |
Closing due to inactivity |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
React Boilerplate
Before opening a new issue, please take a moment to review our community guidelines to make the contribution process easy and effective for everyone involved.
Please direct redux-saga related questions to stack overflow:
http://stackoverflow.com/questions/tagged/redux-saga
For questions related to the boilerplate itself, you can also find answers on our gitter chat:
https://gitter.im/mxstbr/react-boilerplate
Before opening a new issue, you may find an answer in already closed issues:
https://github.com/react-boilerplate/react-boilerplate/issues?q=is%3Aissue+is%3Aclosed
Uncaught SyntaxError: Unexpected token <
Description
I don't know whats causing this issue, but it seems to be breaking a route i've been working on, on prod. My localhost is perfectly fine, i don't even know where to begin to debug this. Please help.
These are the following errors i'm getting from the console log.
at HTMLScriptElement.c
at HTMLScriptElement.c
Looking at this error a bit closer, i saw that it fails when load chunck 4, so i don't know what the issue is, granted my localhost is fine. i'm using react-boilerplate
(Add images if possible)

Versions
Version : 3.0.0
node : >=7.1.0
npm : >=3
package.json
):The text was updated successfully, but these errors were encountered: