Reputation: 91
I'm trying to deploy my app to firebase hosting and I'm getting this error in the console Uncaught SyntaxError: Unexpected token '<'
in several *.chunk.js
files. I have already deployed my app to gh-pages and everything has worked just fine. Also I have tried to deploy it to netlify hosting but I had Failed to load resource: the server responded with a status of 404 ()
in all *.js files.
Here is my firebase.json
:
{
"hosting": {
"public": "build",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"headers": [
{"source": "/service-worker.js", "headers": [{"key": "Cache-Control", "value": "no-cache"}]}
]
}
}
For some reason these *.chunk.js
files contain some html code
image from the console
But at the same time my local main.chunk.js
does not
image of local file
Upvotes: 3
Views: 2134
Reputation: 91
Apparently, I had a conflict in my package.json
file. Necessary for gh-pages
"homepage": ...
in package.json
was somehow messing up with deployments to other hosting providers.
Upvotes: 4