Next.js Discord

Discord Forum

How to set default locale

Unanswered
Ojos Azules posted this in #help-forum
Open in Discord
Ojos AzulesOP
I want to load my page with gr as locale and not en. How to change this? Thanks

import createMiddleware from 'next-intl/middleware';

 
 
export default createMiddleware({
  // A list of all locales that are supported
  locales: ['en', 'gr'],
 
  // Used when no locale matches
  defaultLocale: 'gr'
});
  
export const config = {
  // Match only internationalized pathnames
  matcher: ['/', '/(gr|en)/:path*'],
};

0 Replies