Gridsome page routes are now lower case

503 views Asked by At

Gridsome changes the uppercase path of /Clients to the lowercase path /clients when its built.

This means that setting a router path will not work as the path is case sensitive:

this.$router.push('/Clients')

How can I avoid this? Is it webpack? Does Gridsome want to avoid using router paths?


Further Example:

Pages in development -

Filetree screenshot

Will build to a folder in the /dist directory:

Build file tree screenshot

Because the path is static and is not updated on the build, the path now does not work.


Any suggestions on how to avoid this or how to keep the path the same would be great.

0

There are 0 answers