DEV Community

Discussion on: Making quick blog with modern ES6

Collapse
 
tonis2 profile image
Tonis Anton • Edited

There are some articles that google can handle SPA pages fine,
for example check this here

This would be a great task to see how google indexes such a blog, i will try it out.

And to make all routes work when i open a post/1 for example, i would just forward all routes to index.html

With nginx

 location / {
         try_files $uri $uri/ /index.html;
    }
Collapse
 
larsklopstra profile image
Lars Klopstra ⚡

Cool, very interesting