I currently have a website with various language versions, with English set as the default.
Is there a way to conceal the /en/ path from the URL? (making an exception for just en)
I want to maintain the other languages unchanged.
www.website.com/en/ (want to hide en for default homepage)
www.website.com/fr/ (other languages should remain the same)
Thank you!
This pertains to a vue.js application.
module.exports = [].concat.apply([], langs.map(lang => pages.map(page => `/${lang}/${page}`)))