\n5: \u003C/div>\n\n\n file: virtual:nuxt:.nuxt/layouts.empty.1864d88c.vue:3:62\n \n 1: \u003Ctemplate>\n 2: \u003Cdiv>\n 3: \u003Cp>Some default layout content shared across all pages\u003C/p>\n ^\n 4: \u003Cslot />\n 5: \u003C/div>\n \n at getRollupError (node_modules/vite/node_modules/rollup/dist/es/shared/parseAst.js:392:41)\n at error (node_modules/vite/node_modules/rollup/dist/es/shared/parseAst.js:388:42)\n at Object.error (node_modules/vite/node_modules/rollup/dist/es/shared/node-entry.js:19728:20)\n at Object.error (node_modules/vite/node_modules/rollup/dist/es/shared/node-entry.js:18831:42)\n at Object.transform (node_modules/vite/dist/node/chunks/dep-BWSbWtLw.js:64647:14)\n```\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2914,2915],{"name":2890,"color":2891},{"name":2877,"color":2878},29787,"Issues with layouts from module with the new Nuxt 3.14.0","2024-11-06T06:37:42Z","https://github.com/nuxt/nuxt/issues/29787",0.6504521,{"labels":2922,"number":2927,"owner":2880,"repository":2880,"state":2881,"title":2928,"updated_at":2929,"url":2930,"score":2931},[2923,2924],{"name":2890,"color":2891},{"name":2925,"color":2926},"2.x","d4c5f9",8071,"I18n label data string change failed in layouts dir.","2023-01-22T15:36:08Z","https://github.com/nuxt/nuxt/issues/8071",0.653654,{"labels":2933,"number":2939,"owner":2880,"repository":2880,"state":2881,"title":2940,"updated_at":2941,"url":2942,"score":2943},[2934,2935,2936],{"name":2868,"color":2869},{"name":2890,"color":2891},{"name":2937,"color":2938},"needs reproduction","FBCA04",12883,"Default layout loads last","2023-01-19T16:38:30Z","https://github.com/nuxt/nuxt/issues/12883",0.654169,{"description":2945,"labels":2946,"number":2949,"owner":2880,"repository":2880,"state":2881,"title":2950,"updated_at":2951,"url":2952,"score":2953},"### Environment\n\n------------------------------\r\n- Operating System: `Linux`\r\n- Node Version: `v18.12.1`\r\n- Nuxt Version: `3.0.0`\r\n- Nitro Version: `1.0.0`\r\n- Package Manager: `pnpm@7.18.2`\r\n- Builder: `vite`\r\n- User Config: `srcDir`, `imports`, `modules`, `css`, `build`, `pinceau`, `i18n`, `typescript`, `colorMode`, `ignore`, `vite`, `tailwindcss`, `plausible`\r\n- Runtime Modules: `@pinia/nuxt@0.4.6`, `@vueuse/nuxt@9.7.0`, `@nuxtjs/tailwindcss@6.1.3`, `@pinia/nuxt@0.4.6`, `@nuxtjs/i18n@8.0.0-beta.7`, `@nuxtjs/color-mode@3.2.0`, `@huntersofbook/plausible-nuxt@0.5.2`, `@nuxtjs/partytown@1.3.0`, `nuxt-icon@0.1.8`, `pinceau/nuxt`, `@nuxtjs/fontaine@0.2.3`, `nuxt-headlessui@1.0.4`\r\n- Build Modules: `-`\r\n------------------------------\n\n### Reproduction\n\nhttps://github.com/productdevbook/oku-nuxt3-template/tree/bug-nuxt-config\r\n\r\nbrach: bug-nuxt-config\n\n### Describe the bug\n\n\r\nhttps://user-images.githubusercontent.com/38668796/208305787-be4c7c65-820b-4eb5-baaf-9d6295232c31.mp4\r\n\r\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2947,2948],{"name":2868,"color":2869},{"name":2890,"color":2891},15671,"nuxt config TS errors","2023-01-19T18:29:58Z","https://github.com/nuxt/nuxt/issues/15671",0.65646136,{"description":2955,"labels":2956,"number":2959,"owner":2880,"repository":2880,"state":2881,"title":2960,"updated_at":2961,"url":2962,"score":2963},"### Environment\r\n\r\n- Operating System: `Darwin`\r\n- Node Version: `v14.21.1`\r\n- Nuxt Version: `3.0.0`\r\n- Nitro Version: `1.0.0`\r\n- Package Manager: `yarn@1.22.19`\r\n- Builder: `vite`\r\n- User Config: `ssr`, `modules`, `i18n`\r\n- Runtime Modules: `@nuxtjs/i18n@8.0.0-beta.7`\r\n- Build Modules: `-`\r\n\r\n### Reproduction\r\n\r\n1. Install `@nuxtjs/i18n@next` and enable `detectBrowserLanguage.useCookie` config to `true`\r\n\r\n2. `nuxt.config.ts` as below:\r\n```ts\r\nexport default defineNuxtConfig({\r\n ssr: true, // bug only happens in SSR mode + nuxt generate\r\n modules: [\r\n '@nuxtjs/i18n',\r\n ],\r\n i18n: {\r\n strategy: 'no_prefix',\r\n detectBrowserLanguage: {\r\n useCookie: true,\r\n cookieKey: 'i18n_redirected',\r\n redirectOn: 'root',\r\n },\r\n defaultLocale: 'en',\r\n locales: [\r\n {\r\n code: 'en',\r\n name: 'EN',\r\n },\r\n {\r\n code: 'fr',\r\n name: 'FR',\r\n },\r\n {\r\n code: 'es',\r\n name: 'ES',\r\n }\r\n ],\r\n vueI18n: {\r\n legacy: false,\r\n locale: 'en',\r\n fallbackLocale: ['en'],\r\n messages: {\r\n en: {\r\n welcome: 'Welcome',\r\n },\r\n fr: {\r\n welcome: 'Bienvenue',\r\n },\r\n es: {\r\n welcome: 'Bienvenido',\r\n },\r\n },\r\n },\r\n },\r\n});\r\n```\r\n\r\n3. `app.vue` test UI code as below:\r\n```vue\r\n\u003Ctemplate>\r\n \u003Cdiv>\r\n \u003Ch1>{{ $t('welcome') }}\u003C/h1>\r\n \u003Cp>Current locale: {{ locale }}\u003C/p>\r\n \u003Cul>\r\n \u003Cli\r\n v-for=\"({ code, name }, i) in locales\"\r\n :key=\"code\"\r\n :class=\"{ 'selected': code === locale }\"\r\n @click.prevent=\"setLocale(code)\"\r\n >\r\n {{ name }}\r\n \u003C/li>\r\n \u003C/ul>\r\n \u003C/div>\r\n\u003C/template>\r\n\r\n\u003Cscript setup>\r\nconst { locale, locales, getBrowserLocale, setLocale } = useI18n();\r\nconst browserLocale = getBrowserLocale();\r\n\r\nwatch(locale, (newLocale, oldLocale) => {\r\n console.log('language switched', 'from', oldLocale, 'to', newLocale);\r\n});\r\n\r\nonMounted(() => {\r\n console.log('current browser locale:', browserLocale);\r\n});\r\n\u003C/script>\r\n\r\n\u003Cstyle>\r\n/* underline style for selected locale */\r\n.selected {\r\n text-decoration: underline;\r\n}\r\n\r\nul {\r\n list-style: none;\r\n padding: 0;\r\n display: flex;\r\n font-size: larger;\r\n}\r\nli {\r\n margin-right: 1rem;\r\n cursor: pointer;\r\n}\r\n\u003C/style>\r\n```\r\n\r\n4. Run `yarn generate` and `yarn preview`\r\n\r\n5. Got `Hydration completed but contains mismatches.` error message in console and the UI rendering issue\r\n\r\n### Describe the bug\r\n\r\nHere is reproduction link:\r\nhttps://euphonious-crepe-e4239a.netlify.app\r\nTry to select a different locale and **refresh** the page\r\n\r\nAfter page refresh the `.selected` underline style always applied to EN\r\n\u003Cimg width=\"631\" alt=\"ui\" src=\"https://user-images.githubusercontent.com/11518941/206646012-1272316d-b42f-4d04-bcc9-f485bfd292de.png\">\r\n\u003Cimg width=\"270\" alt=\"dom\" src=\"https://user-images.githubusercontent.com/11518941/206646028-cc31074c-57e0-40db-ae8e-62d45f253982.png\">\r\n\r\n\r\nThe full code is like:\r\n\r\n\r\n### Additional context\r\n\r\nI don't know if this is a bug of Nuxt 3 framework or the @nuxtjs/i18n module so I just opened the issue here, thanks\r\n\r\n### Logs\r\n\r\n_No response_",[2957,2958],{"name":2868,"color":2869},{"name":2890,"color":2891},15695,"nuxt 3 with i18n module hydration mismatches error in static generated ssr mode","2023-01-19T18:20:11Z","https://github.com/nuxt/nuxt/issues/15695",0.65994114,{"description":2965,"labels":2966,"number":2969,"owner":2880,"repository":2880,"state":2881,"title":2970,"updated_at":2971,"url":2972,"score":2973},"### Environment\n\n- Operating System: Darwin\r\n- Node Version: v18.15.0\r\n- Nuxt Version: 3.9.3\r\n- CLI Version: 3.10.0\r\n- Nitro Version: 2.8.1\r\n- Package Manager: yarn@1.22.19\r\n- Builder: -\r\n- User Config: devtools\r\n- Runtime Modules: -\r\n- Build Modules: -\n\n### Reproduction\n\nhttps://stackblitz.com/edit/github-stprju\n\n### Describe the bug\n\nWhen changing layout my links break at least, on nuxt 3.8.2 everything worked fine\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2967,2968],{"name":2868,"color":2869},{"name":2890,"color":2891},25307,"Everything breaks down when you change the layout","2024-01-19T10:18:34Z","https://github.com/nuxt/nuxt/issues/25307",0.66165376,{"labels":2975,"number":2978,"owner":2880,"repository":2880,"state":2881,"title":2979,"updated_at":2980,"url":2981,"score":2982},[2976,2977],{"name":2868,"color":2869},{"name":2890,"color":2891},13285,"Page layout not working as intended","2023-01-19T16:51:10Z","https://github.com/nuxt/nuxt/issues/13285",0.66343474,["Reactive",2984],{},["Set"],["ShallowReactive",2987],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fy3zXkiO-8pG_71_b6X7cVeFW5TWMnlWbSuNFegYa1UI":-1},"/nuxt/nuxt/29875"]