Skip to content

Commit f914fb8

Browse files
committed
Update post sobre SEO para SPA Vue.js
1 parent 16c852d commit f914fb8

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

src/en/posts/essential-guide-to-improve-seo-in-single-page-application-vuejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ In the context of Server Side Rendering (SSR) as the name already says rendering
5454

5555
It is great for dynamic projects that require SEO, but also projects that seek a presence in the social networks where their content is shared by users.
5656

57-
I wrote an article (you can check [this link](/posts/when-to-use-server-side-rendering-ssr-in-vuejs-projects.html)) on this topic, in it, you can know more in-depth the benefits of using server-side rendering and know a bit about [Nuxt.js](https://nuxtjs.org/) which is without a doubt the best tool to use when addresses universal applications of [Vue.js](https://vuejs.org/).
57+
I wrote an article (you can check [this link](/en/posts/when-to-use-server-side-rendering-ssr-in-vuejs-projects.html)) on this topic, in it, you can know more in-depth the benefits of using server-side rendering and know a bit about [Nuxt.js](https://nuxtjs.org/) which is without a doubt the best tool to use when addresses universal applications of [Vue.js](https://vuejs.org/).
5858

5959
### Prerender
6060
Since you now know what server-side rendering is, this implementation may sometimes seem overdone in certain SPAs using Vue.js. It may be because of the type of the project or the lack of structure to deploy a server, among several other business rules.

src/posts/guia-essencial-para-melhorar-o-seo-em-suas-spas-vuejs.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ export default {
161161
separator: '-',
162162
complement: 'TechMundo'
163163
}
164-
...
164+
...
165165
```
166166
167167
Exemplo de uso utilizando o `vue-meta`
@@ -171,7 +171,7 @@ export default {
171171
metaInfo: {
172172
title: '13 brincadeiras e curiosidades escondidas na busca do Google',
173173
titleTemplate: '%s - TecMundo',
174-
...
174+
...
175175
```
176176
177177
Resultado:
@@ -197,9 +197,9 @@ export default {
197197
head: {
198198
199199
meta: [
200-
{ name: 'description', content: 'Depois de comemorar o aniversário de 10 anos do Chrome, a Google está se preparando para comemorar também o seu vigésimo aniversário como empresa.' }
200+
{ name: 'description', content: 'Depois de comemorar o aniversário de 10 anos do Chrome, a Google está se preparando para comemorar também o seu vigésimo aniversário como empresa.' }
201201
]
202-
...
202+
...
203203
```
204204
205205
![Recorte de um resultado da página de busca do Google com a descrição do exemplo em destaque com bordas vermelhas](/images/posts/2018/9/serp-descricao-seo-spa-vuejs.png)
@@ -259,7 +259,7 @@ export default {
259259
link: [
260260
{ rel: 'canonical', href='https://mydomain.com/posts' }
261261
]
262-
...
262+
...
263263
```
264264

265265
Esse assunto, como a maiora das citadas nesse artigo deverá ter um artigo separado, mas até lá, você pode se aprofundar melhor na (URL) canônica através do [Google support](https://support.google.com/webmasters/answer/139066).
@@ -274,12 +274,12 @@ Exemplo da sua estrutura: (by [sitemap.org](https://www.sitemaps.org/protocol.ht
274274
```xml
275275
<?xml version="1.0" encoding="UTF-8"?>
276276
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
277-
<url>
278-
<loc>http://www.example.com/</loc>
279-
<lastmod>2005-01-01</lastmod>
280-
<changefreq>monthly</changefreq>
281-
<priority>0.8</priority>
282-
</url>
277+
<url>
278+
<loc>http://www.example.com/</loc>
279+
<lastmod>2005-01-01</lastmod>
280+
<changefreq>monthly</changefreq>
281+
<priority>0.8</priority>
282+
</url>
283283
</urlset>
284284
```
285285

@@ -310,7 +310,7 @@ Depois de você enviar seu sitemap, poderá verificar como anda a indexação de
310310

311311
Uma coisa que você precisa saber é que o sitemap.xml não faz o Google indexar seu site, mas sim informá-lo (uma dica). O Google irá indexar as páginas que ela achará relevante e que tem qualidade o suficiente para valer a pena indexar.
312312

313-
Vantagens de se ter um sitemap.xml para o seu site:
313+
Vantagens de se ter um sitemap.xml para o seu site:
314314
- Quando você tem páginas dinâmicas;
315315
- Quando você não tem uma boa estrutura com os links internos;
316316
- Quando seu site é novo e você cadastra ele nas ferramentas dos mecanismos de buscas;

0 commit comments

Comments
 (0)