Results 13 comments of Terry Cai

@RGon-c Now I only use the config with the following like, but not use files config: ```js defaultLocale: 'en', detectBrowserLanguage: { useCookie: true, fallbackLocale: 'en', cookieKey: 'i18n_redirected' }, strategy: 'prefix_except_default',...

@BobbieGoede In 9.x I can use ```ts // Import JSON files const modules = import.meta.glob('./en/*.json', { eager: true }); // Specify a more concrete JSON format type const translations: Record...

@BobbieGoede Does this mean I switch to v10, then I can use ```js nuxt.hook('pages:extend', (pages) => { for (const page of pages) { if (page.path.startsWith('/admin')) { page.meta = page.meta ||...