Update dependencies and import dynamic method
This commit updates multiple dependencies in the pnpm-lock.yaml file and imports the dynamic method from 'next/dynamic' in the site-header-account-section.tsx file. These updates are part of routine maintenance and improvement of the codebase. The import allows for dynamic imports, which can enhance performance.
This commit is contained in:
@@ -47,6 +47,19 @@ export function initializeI18nClient(
|
||||
return reject(err);
|
||||
}
|
||||
|
||||
console.log('i18n client initialized');
|
||||
console.log(
|
||||
`initialized with ${i18next.languages.join(', ')} languages`,
|
||||
clientInstance,
|
||||
);
|
||||
|
||||
console.log(
|
||||
'resource',
|
||||
i18next.getResource('en', 'billing', 'billingInterval.month'),
|
||||
);
|
||||
|
||||
console.log(i18next.t('billing:billingInterval.month'));
|
||||
|
||||
clientInstance = i18next;
|
||||
|
||||
resolve(clientInstance);
|
||||
|
||||
Reference in New Issue
Block a user