",[2020,2021,2022],{"name":2005,"color":2006},{"name":1988,"color":1989},{"name":1991,"color":1992},3270,"[Feature request] Toast hide progress in app.config","2025-02-09T17:11:11Z","https://github.com/nuxt/ui/issues/3270",0.72774816,{"description":2029,"labels":2030,"number":2034,"owner":1994,"repository":1994,"state":1996,"title":2035,"updated_at":2036,"url":2037,"score":2038},"### Describe the feature\n\nIt should be described in the docs how to use the [vscode extension for vitest](https://github.com/vitest-dev/vscode) (and similarily the one for jest) with nuxt testing.\n\n### Additional information\n\n- [X] Would you be willing to help implement this feature?\n- [X] Could this feature be implemented as a module?\n\n### Final checks\n\n- [X] Read the [contribution guide](https://v3.nuxtjs.org/community/contribution).\n- [X] Check existing [discussions](https://github.com/nuxt/framework/discussions) and [issues](https://github.com/nuxt/framework/issues).",[2031],{"name":2032,"color":2033},"documentation","5319e7",14969,"Add support for vscode vitest extension","2024-06-30T11:10:11Z","https://github.com/nuxt/nuxt/issues/14969",0.7285373,{"description":2040,"labels":2041,"number":2044,"owner":1994,"repository":1995,"state":2045,"title":2046,"updated_at":2047,"url":2048,"score":2049},"### Environment\n\n------------------------------\n- Operating System: Windows_NT\n- Node Version: v20.9.0\n- Nuxt Version: 3.13.1\n- CLI Version: 3.13.1\n- Nitro Version: 2.9.7\n- Package Manager: npm@10.9.0\n- Builder: -\n- User Config: devtools, modules, css, ui, colorMode, compatibilityDate, icon, sourcemap, experimental, nitro, future, pwa, routeRules, spaLoadingTemplate, runtimeConfig\n- Runtime Modules: @nuxt/ui@3.0.0-alpha.9, @vueuse/nuxt@10.11.1, @nuxtjs/mdc@0.6.1, @formkit/auto-animate/nuxt@0.8.2, @vite-pwa/nuxt@0.10.5\n- Build Modules: -\n------------------------------\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.0-alpha.9\n\n### Reproduction\n\n`style tag`\n\n`Use`\n\n`debug`\n\n\n\n### Description\n\nSorry, I don't know if it's a bad configuration on my part, however the styles in which I use @apply don't work for me.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2042,2043],{"name":1985,"color":1986},{"name":1988,"color":1989},2763,"closed","postcss style not applying","2024-12-05T13:48:59Z","https://github.com/nuxt/ui/issues/2763",0.69864476,{"description":2051,"labels":2052,"number":2053,"owner":1994,"repository":2054,"state":2045,"title":2055,"updated_at":2056,"url":2057,"score":2058},"\r\n\r\nTested on Mac/Windows on Safari, Chrome, Arc Browser, even with Incognito.\r\n\r\nConsole:\r\n\r\n\r\nThis might be related to nuxt/image?\r\n",[],1636,"nuxt.com","\"built by developers\" home section icons do not display","2024-08-16T18:08:46Z","https://github.com/nuxt/nuxt.com/issues/1636",0.71147186,{"description":2060,"labels":2061,"number":2067,"owner":1994,"repository":2054,"state":2045,"title":2068,"updated_at":2069,"url":2070,"score":2071},"Update [Webreinvent partner page](https://nuxt.com/support/agencies/webreinvent) with content below :\n\nWebReinvent has 12+ years of experience building software and a team of 50+ software professionals including software developers, UI/UX designers, testers, DevOps, project managers, etc. The team is well-versed in the Nuxt ecosystem and has delivered multiple high-performance web apps, dashboards, real-time apps, multi-tenant SaaS applications, etc.\n\nWe are one of the most process-driven companies and we love to follow industry standards. Some of them are managing git repo, code review/audits, deploying new releases via CI/CD, automated software testing, maintaining detailed technical documentation, application performance monitoring, etc. We have been delivering MVP to enterprise-level software products from startup to MSME.\n\nContact us to build your MVP fast or migrate your legacy software to Nuxt or maintain your existing software or scale your software to the enterprise level. We're here to help.\n",[2062,2064],{"name":2005,"color":2063},"1ad6ff",{"name":2065,"color":2066},"marketing","f5c828",1156,"Update Webreinvent partner page","2023-06-06T12:14:42Z","https://github.com/nuxt/nuxt.com/issues/1156",0.71607995,{"description":2073,"labels":2074,"number":2075,"owner":1994,"repository":2076,"state":2045,"title":2077,"updated_at":2078,"url":2079,"score":2080},"\r\nI get warn: `Avoid app logic that relies on enumerating keys on a component instance. The keys will be empty in production mode to avoid performance overhead.` when I use an icon component and use multiple slots at the same time.\r\n\r\n# Replication:\r\nnuxt.config.ts\r\n```javascript\r\nexport default defineNuxtConfig({\r\n devtools: { enabled: true },\r\n modules: ['@nuxt/content', \"nuxt-icon\"],\r\n content: {\r\n documentDriven: {\r\n trailingSlash: false\r\n }\r\n }\r\n})\r\n```\r\ncomponents/content/ComponentWithIcon.vue\r\n```vue\r\n\u003Ctemplate>\r\n \u003Cdiv>\r\n Component with icon:\r\n \u003CIcon name=\"bxl:python\" class=\"w-8 h-8\" />\r\n \u003C/div>\r\n\u003C/template>\r\n```\r\n\r\ncomponents/content/Container.vue:\r\n```vue\r\n\u003Ctemplate>\r\n \u003Cdiv>\r\n \u003Cslot />\r\n \u003C/div>\r\n\u003C/template>\r\n```\r\n\r\nlayouts/full.vue:\r\n```vue\r\n\u003Ctemplate>\r\n \u003Cdiv class=\"custom-layout\">\r\n \u003Cslot />\r\n \u003C/div>\r\n\u003C/template>\r\n```\r\n\r\ncontent/index.md:\r\n```markdown\r\n---\r\nlayout: 'full'\r\n---\r\n\r\n:component-with-icon\r\n\r\n::container\r\nSlot nr 1\r\n::::container\r\nSlot nr 2\r\n::::\r\n::\r\n```\r\n\r\nThis bug prevents the site from being used in development mode due to the infinity loop. The problem does not occur in the latest beta version of nuxt-icon, but in the original project I use nuxt-ui, which uses the old version \r\n",[],157,"icon","Infinite WARN loop with slots and nuxt-content","2024-09-06T11:17:31Z","https://github.com/nuxt/icon/issues/157",0.7166758,{"description":2082,"labels":2083,"number":2090,"owner":1994,"repository":1994,"state":2045,"title":2091,"updated_at":2092,"url":2093,"score":2094},"Hi,\r\nI'm using a custom-made vue static blog and I wish to migrate to nuxt to get a full static html generation.\r\n\r\nThe key is all the posts are made with markdown files, with some metadatas. And I’d like to avoid manually making vue files for each post.\r\n\r\nHow hard would it be to implement? For now I guess I must add a parser as a middleware and add a custom webpack directive to catch md files, am I right?\r\n\r\nThanks for your help!\n\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This question is available on \u003Ca href=\"https://nuxtjs.cmty.io\">Nuxt.js\u003C/a> community (\u003Ca href=\"https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c341\">#c341\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[2084,2087],{"name":2085,"color":2086},"question","cc317c",{"name":2088,"color":2089},"2.x","d4c5f9",396,"Using markdown as articles?","2023-01-18T15:38:50Z","https://github.com/nuxt/nuxt/issues/396",0.7240737,{"description":2096,"labels":2097,"number":2112,"owner":1994,"repository":1994,"state":2045,"title":2113,"updated_at":2114,"url":2115,"score":2116},"### Environment\n\n- Operating System: Windows_NT\r\n- Node Version: v20.1.0\r\n- Nuxt Version: 3.5.2\r\n- Nitro Version: 2.4.1\r\n- Package Manager: npm@9.6.4\r\n- Builder: vite\r\n- User Config: modules, app, typescript, vite, experimental\r\n- Runtime Modules: @pinia/nuxt@0.4.11, @vueuse/nuxt@10.1.2\r\n- Build Modules: -\n\n### Reproduction\n\nI have a plugin for i18n which uses `\"i18next\": \"^22.5.0\",\"i18next-vue\": \"^2.1.1\",`\r\n\r\n```typescript\r\nexport default defineNuxtPlugin(({ vueApp }) => {\r\n\tvueApp.use(I18NextVue, { i18next });\r\n\ti18next.init({ fallbackLng: defaultLocale, resources });\r\n\r\n\tfunction translate(key: TranslationKeys) {\r\n\t\tconst { t } = useTranslation();\r\n\t\treturn t(key);\r\n\t}\r\n\r\n\treturn { provide: { i18n: i18next, translate } };\r\n});\r\n```\n\n### Describe the bug\n\nBut when I use my plugin like this\r\n```typescript\r\nconst { $translate } = useNuxtApp();\r\nuseHead({ titleTemplate: (t) => `${t} / ${$translate('meta.home.title')}` });\r\n```\r\nI get the following error.\r\n\r\n\r\nThis works fine tho\r\n```typescript\r\nconst { $translate } = useNuxtApp();\r\nuseHead({ titleTemplate: `%s / ${$translate('meta.home.title')}` });\r\n```\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n[frontend] [nuxt] [request error] [unhandled] [500] i18next-vue: No Vue instance in context. Make sure to register the i18next-vue plugin using app.use(...).\r\n[frontend] at Module.useTranslation (/C:/Users/ckuka/VS%20Code%20Projects/ows-events/frontend/node_modules/i18next-vue/dist/index.mjs:118:11)\r\n[frontend] at translate (C:\\Users\\ckuka\\VS Code Projects\\ows-events\\frontend\\plugins\\i18n.ts:23:41)\r\n[frontend] at titleTemplate (C:\\Users\\ckuka\\VS Code Projects\\ows-events\\frontend\\pages\\index.vue:43:39)\r\n[frontend] at resolveTitleTemplate (/C:/Users/ckuka/VS%20Code%20Projects/ows-events/frontend/node_modules/@unhead/shared/dist/index.mjs:79:12)\r\n[frontend] at tags:resolve (/C:/Users/ckuka/VS%20Code%20Projects/ows-events/frontend/node_modules/unhead/dist/index.mjs:59:28)\r\n[frontend] at /C:/Users/ckuka/VS%20Code%20Projects/ows-events/frontend/node_modules/hookable/dist/index.mjs:48:66\r\n[frontend] at /C:/Users/ckuka/VS%20Code%20Projects/ows-events/frontend/node_modules/hookable/dist/index.mjs:48:56\r\n[frontend] at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\r\n[frontend] at async Object.resolveTags (/C:/Users/ckuka/VS%20Code%20Projects/ows-events/frontend/node_modules/unhead/dist/index.mjs:995:7)\r\n[frontend] at async Module.renderSSRHead (/C:/Users/ckuka/VS%20Code%20Projects/ows-events/frontend/node_modules/@unhead/ssr/dist/index.mjs:77:23)\r\n[frontend] [nuxt] [request error] [unhandled] [500] i18next-vue: No Vue instance in context. Make sure to register the i18next-vue plugin using app.use(...).\r\n[frontend] at Module.useTranslation (/C:/Users/ckuka/VS%20Code%20Projects/ows-events/frontend/node_modules/i18next-vue/dist/index.mjs:118:11)\r\n[frontend] at translate (C:\\Users\\ckuka\\VS Code Projects\\ows-events\\frontend\\plugins\\i18n.ts:23:41)\r\n[frontend] at titleTemplate (C:\\Users\\ckuka\\VS Code Projects\\ows-events\\frontend\\pages\\index.vue:43:39)\r\n[frontend] at resolveTitleTemplate (/C:/Users/ckuka/VS%20Code%20Projects/ows-events/frontend/node_modules/@unhead/shared/dist/index.mjs:79:12)\r\n[frontend] at tags:resolve (/C:/Users/ckuka/VS%20Code%20Projects/ows-events/frontend/node_modules/unhead/dist/index.mjs:59:28)\r\n[frontend] at /C:/Users/ckuka/VS%20Code%20Projects/ows-events/frontend/node_modules/hookable/dist/index.mjs:48:66\r\n[frontend] at /C:/Users/ckuka/VS%20Code%20Projects/ows-events/frontend/node_modules/hookable/dist/index.mjs:48:56\r\n[frontend] at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\r\n[frontend] at async Object.resolveTags (/C:/Users/ckuka/VS%20Code%20Projects/ows-events/frontend/node_modules/unhead/dist/index.mjs:995:7)\r\n[frontend] at async Module.renderSSRHead (/C:/Users/ckuka/VS%20Code%20Projects/ows-events/frontend/node_modules/@unhead/ssr/dist/index.mjs:77:23)\n```\n",[2098,2100,2103,2106,2109],{"name":2005,"color":2099},"8DEF37",{"name":2101,"color":2102},"discussion","538de2",{"name":2104,"color":2105},"3.x","29bc7f",{"name":2107,"color":2108},"workaround available","11376d",{"name":2110,"color":2111},"🍰 p2-nice-to-have","0E8A16",21457,"Cannot use a plugin in the titleTemplate function","2023-06-08T20:46:09Z","https://github.com/nuxt/nuxt/issues/21457",0.7242788,["Reactive",2118],{},["Set"],["ShallowReactive",2121],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"tlCL0HIYNkyfu9wkvQEVUZ9EMAN98CUq2Tbaw2GfzUU":-1},"/nuxt/nuxt.com/728"]