546 questions
0
votes
1
answer
3k
views
Is rel="prerender" deprecated in Google Chrome?
I want to use rel="prerender" to prerender some pages. I have however read something about it being deprecated in Google Chrome and didn't find any trustworthy source on it.
Is rel="prerender" ...
0
votes
0
answers
435
views
Vue js babel build error after installing prerender-spa-plugin
So I have a vue-js application and today I started using prerender-spa-plugin to generate some static pages for better SEO. When I run npm run build, everything works perfect, no errors. Now when I ...
0
votes
0
answers
1k
views
correct setting prerender-spa-plugin
I am trying to configure a prerender-spa-plugin for my application.
Need to configure for multiple pages.
I do, as in documentation (Vue.js 2 Router)
I added the necessary parameters to file webpack....
1
vote
3
answers
480
views
REACT spa app - serving separate and different prerendered static html for SEO, benefits and drawbacks
Are there any benefits or drawbacks if you serving light version of page optimized for SEO if bots crawls and if people come from web then react SPA which completely javascript application.
...
4
votes
1
answer
553
views
Depricated rel="prerender" in Chrome
I want to use the resource hint "prerender" (W3C) to speed up a website, but prerender is depricated in Chrome since v58. I read that NoState-Prefetch should be used instead (Google Dev), but I don't ...
1
vote
1
answer
1k
views
prerender.io and using _escaped_fragment_= with angularJs
I have a site that is using prerender.io. Last year it was all working smoothly. This year I had to change the site and I moved it from a .net project to a pure AngularJs application (using yeo ...
0
votes
1
answer
1k
views
Nginx conf for prerendering Angular SPA
So I have next configuration for my Angular SPA app:
server {
listen 80;
server_name idj.rtech.rs;
return 301 https://example.com$request_uri;
}
server {
listen 443 ...
0
votes
1
answer
73
views
How do I configure prerender.io to work on webapp2 for my angularjs app?
I have been trying to configure the prerender.io middleware for my angularjs app hosted on google app engine with webapp2 framework, but none of the options for installing the middleware token seem ...
0
votes
0
answers
997
views
how to configure my nginx conf for my own prerender server
I would like configure nginx to use my prerender server ( localhost:3005 ) launched with pm2
My website in on port localhost:3000
Actually I am using the service.prerender.io but it doesn't work with ...
0
votes
0
answers
443
views
AngularJs and prerender.io
I'm working on a Single Page Application developed in AngularJs and using Prerender.io for known SEO issues. In AngularJs I set Prerender.io following this tutorial.
Except for the home page, all ...
-2
votes
1
answer
367
views
Enable SEO for AngularJs (1x) website [duplicate]
I am trying to build my personal website. I am using angularjs (1.6.4) with laravel backend. But even after submitting to Google for indexing, the website is not appearing in the google searches. If I ...
2
votes
1
answer
4k
views
Change hash-url to hash-bang url using angular4
I am using angulr4 this is my URL http://localhost/#/login.html I want to change this url to http://localhost/#!/login.html. I found solution for angularjs but not for angular4. I am using "Prerender ...
2
votes
0
answers
688
views
Pre-render link attribute not causing resources to load
So, my website consists of html and javascript, nothing special.
At some point in time the user will be redirected to a website like youtube via javascript:
window.location = "https://www.youtube....
0
votes
1
answer
2k
views
React js server side rendering window, document, jQuery and localStorage are not working
While rendering react application at server side window, document, jQuery and localStorage are not working.
Can anyone help me with this?
0
votes
1
answer
703
views
Using Prerender.io how to redirect the crawlers to our fragmented site?
Currently we are using prerender-node to crawl the HTML content. It is working only when we add "_escaped_fragment_=" to our url. How to see the crawled HTML content without adding hash tag.
Example:
...
0
votes
2
answers
2k
views
Trying to get Prerender SPA Plugin to work on Vue.js CLI 3
I'm getting the following error when trying to build:
Building for production...Error: ENOENT: no such file or directory, stat '/Users/me/Code/project/index.html'
Package: "prerender-spa-plugin": "^...
0
votes
1
answer
176
views
How to Setup Prerender for a Phoenix Application
We're running Prerender on localhost:3000 and our web application is running on localhost:39499. The problem with our site is that Google is not able to see the javascript that's running in Angular....
0
votes
1
answer
329
views
nginx prerender doesn't work
I tried with the follow configuration and it didn't work.
Prerender.io page stays with the message "We haven't seen a request with your Prerender token yet."
Obviously I replaced YOUR_TOKEN with mine
...
2
votes
1
answer
2k
views
Prerender.io issue - getting '301' miss on everything, then 404 - Nginx + AngularJS
I'm working to make an AngularJS e-commerce application of mine more SEO friendly so I'm working on getting Prerender.io up and running on the app.
My setup for hosting/serving files is with nginx ...
0
votes
1
answer
493
views
.htaccess proxy for bots
I just wrote a blog with the create-react-app. In addition to that I wrote a small service which will render the site using chrome on the server for crawlers like Google or Facebook.
So I have http://...
0
votes
2
answers
2k
views
How to prerender single page app that uses React?
In my application, users have their own profile page in which there is their profile picture (I'm using react router to deal with routes on client side).
What I want to do is: when a user sends link ...
0
votes
2
answers
529
views
Vue - prerender-spa-plugin index.html content undefined
Hi I installed Vue with the Webpack vue-cli.
I then followed this tutorial for prerendering the html:
https://symmetrycode.com/better-vue-seo-with-prerender-spa-plugin-and-vue-cli/
I'm certain ...
2
votes
2
answers
4k
views
Vue prerender flickering
I have the following solution now:
<template>
<section id="prod-main">
<prod-preview v-for="prod in products" :id="prod.id" :key="prod.id"/>
</section>
</...
1
vote
0
answers
183
views
Social Sharing with angular js
I have developed angular js web application and hosted in IIS server. My web app is developed only by using javascript, css and html.
I am trying to implement Prerender.io in my application. I ...
0
votes
1
answer
1k
views
Prerender Angular app on an already existing Node.js server
My goal is to have dynamic og: tags, that can be seen by the facebook crawler. By doing some research I figured the best (and probably the only) approach is to prerender my app on the server. However ...