Reputation: 2425
I've removed spiderable package and added prerender package to my angular-meteor app.
{
"public": {
},
"PrerenderIO": {
"token": "mytoken"
}
}
This is my settings.json file
after the undefined://
it's my ip address from the server.
What am I doing wrong?
EDIT
Tried adding
"PrerenderIO": {
"token": "mytoken"
}
to the mup.json
file but still doesn't work.
Upvotes: 0
Views: 66
Reputation: 1604
Try:
"PrerenderIO": {
"token": "mytoken",
"host": "yourwebsite.com",
"protocol": "https"
}
Change yourwebsite.com to your domain and set the protocol to http or https...whichever one your site supports.
Upvotes: 1