The problem occures when reload/refresh the page.
If the route in english its okay and working fine.
But when it comes to hebrew this not working and gives us
The client-side rendered virtual DOM tree is not matching server-rendered content....
export default {
locales: [
{
code: 'he',
iso: 'he'
},
{
code: 'en',
iso: 'en'
}
],
defaultLocale: 'he',
parsePages: false,
strategy: 'prefix_except_default',
pages: {
'categories/index': {
he: '/קטגוריות',
en: '/categories',
},
'categories/_id': {
he: '/קטגוריות/:id',
en: '/categories/:id',
},
search: {
he: '/חיפוש',
en: '/search'
},
promotions: {
he: '/מבצעים',
en: '/promotions'
}
}
}