Currently, access these urls are difference: ```javascript /posts /posts/ ``` How to make these urls the same? Currently, I have to define two paths for the same view: ```javascript const routes = [ { path: "/posts", view: Posts }, { path: "/posts/", view: Posts }, ]; ```