ZacharyFolk / sandbox

My digital business card, blog, and sandbox for various JS experiments
https://folk.codes
0 stars 0 forks source link

Funny business with direct links #102

Closed ZacharyFolk closed 2 months ago

ZacharyFolk commented 2 months ago

The blog only works if you navigate through sidebar links and update component that way, if you visit a post directly it is a 404

https://folk.codes/post/64023d8da42174866a50a545

ZacharyFolk commented 2 months ago

Fix was to update my nginx default from

  location / {
        try_files $uri $uri/ =404;
    }

to

  location / {
     try_files $uri /index.html;
     }

Now it defaults back to react and client side can navigate to that url.