-->\r\n \u003Ch1>count: {{ count }}\u003C/h1>\r\n \u003Cbutton @click=\"count++\">+\u003C/button>\r\n \u003C/div>\r\n\u003C/template>\r\n\r\n\u003Cscript setup>\r\nconst count = ref(0);\r\n\u003C/script>\r\n```\r\n\r\nBut the same error occurs, when you stay with the default app.vue (`\u003CNuxtWelcome />`).\r\n\r\n### Describe the bug\r\n\r\nFirst: I think this is the same bug as described [here](https://github.com/nuxt/nuxt/issues/12577), but somehow the issue was closed.\r\nNo, not vite: I鈥檝e tested it, and it has nothing to do with [vite as builder](https://github.com/nuxt/nuxt/issues/12577#issuecomment-1397219367), because I鈥檝e tested it also with [webpack as builder](https://github.com/nuxt/nuxt/issues/12577#issuecomment-1397219410) and you can verify this too by trying it with webpack. And if you have a look at can i use ([es6-module](https://caniuse.com/es6-module), [dynamic-import](https://caniuse.com/es6-module-dynamic-import), [import.meta](https://caniuse.com/mdn-javascript_operators_import_meta)), [vite is supported](https://vitejs.dev/guide/#browser-support) on iOS 12.\r\n\r\nHere is a video of the app running on an iPad with iOS 12 (via browserstack.com):\r\n\r\n---\r\n\r\nhttps://user-images.githubusercontent.com/2291224/221809915-5077d637-f7e0-45b4-bbc6-e90d473373a9.mp4\r\n\r\n---\r\n\r\nAs you can see, the problem is that an error is thrown, that stops the app from working (both vite and webpack):\r\n\r\n```\r\nSyntaxError: Unexpected token '?' (program):1\r\npromiseReactionJob @ (program):1\r\n```\r\n\r\nSafari on iOS 12 (from 2018/19) is still a relevant browser with `0.42%`, as you can see on [usage tables](https://caniuse.com/usage-table). So I hope we can fix this!",[3089,3090],{"name":3054,"color":3055},{"name":3024,"color":3025},19328,"Nuxt 3 not working on iOS \u003C= 12","2024-05-31T13:13:38Z","https://github.com/nuxt/nuxt/issues/19328",0.6812533,{"description":3097,"labels":3098,"number":3105,"owner":3030,"repository":3030,"state":3058,"title":3106,"updated_at":3107,"url":3108,"score":3109},"### Environment\n\n```\r\n------------------------------\r\n- Operating System: Linux\r\n- Node Version: v16.14.2\r\n- Nuxt Version: 3.4.0\r\n- Nitro Version: 2.3.3\r\n- Package Manager: npm@7.17.0\r\n- Builder: vite\r\n- User Config: vite, extensions\r\n- Runtime Modules: -\r\n- Build Modules: -\r\n------------------------------\r\n```\n\n### Reproduction\n\nhttps://stackblitz.com/edit/github-o84u83\n\n### Describe the bug\n\nI have been looking to add a very small number (2-3) of pages to a Nuxt 3 project using Markdown. Since I'll only using Markdown for a few pages in the project and don't need additional features like querying, I thought I'd try using [vite-plugin-vue-markdown](https://github.com/mdit-vue/vite-plugin-vue-markdown) instead of the heavier Nuxt Content.\r\n\r\nI changed the Vite settings in `nuxt.config.ts` according to `vite-plugin-vue-markdown`'s documentation and added `.md` to the `extensions` array. However, this does not seem to be sufficient to get `vite-plugin-vue-markdown` and the Nuxt page resolver to work together since when I visit a page written using a Markdown file, I run into the following errors (as if `vite-plugin-vue-markdown` hasn't ran at all):\r\n\r\nServer\r\n```\r\nERROR At least one \u003Ctemplate> or \u003Cscript> is required in a single file component.\r\n```\r\nBrowser\r\n```\r\n500\r\n[vite-node] [plugin:vite:vue] [SyntaxError] /pages/about.md?macro=true\r\n\r\n# About Page\r\n\r\nat /pages/about.md?macro=true\r\nat Object.parse$4 [as parse] (./node_modules/@vue/compiler-sfc/dist/compiler-sfc.cjs.js:5269:21)\r\nat createDescriptor (file://./node_modules/@vitejs/plugin-vue/dist/index.mjs:86:43)\r\nat transformMain (file://./node_modules/@vitejs/plugin-vue/dist/index.mjs:2240:34)\r\nat TransformContext.transform (file://./node_modules/@vitejs/plugin-vue/dist/index.mjs:2738:16)\r\nat Object.transform (file://./node_modules/vite/dist/node/chunks/dep-79892de8.js:43436:44)\r\nat async loadAndTransform (file://./node_modules/vite/dist/node/chunks/dep-79892de8.js:41154:29)\r\n```\n\n### Additional context\n\nI have been able to partially get the Vite plugin working in Nuxt by manually importing the routes using `app/router.options.ts` (https://stackblitz.com/edit/github-dbvb63), although this workaround interferes with other Nuxt features like import aliases:\r\n```\r\n[nuxt] #imports should be transformed with real imports. There seems to be something wrong with the imports plugin.\r\n```\r\n\r\nPer the instructions for reporting bugs, I have also tried using the Vite plugin with the Vue 3 SSR template and it seems to work fine there (https://stackblitz.com/edit/github-uo229m).\n\n### Logs\n\n_No response_",[3099,3100,3103],{"name":3054,"color":3055},{"name":3101,"color":3102},"upstream","E8A36D",{"name":3104,"color":3080},"馃敤 p3-minor",20245,"Incompatibility when using `.md` pages through `vite-plugin-vue-markdown`","2023-04-13T21:45:30Z","https://github.com/nuxt/nuxt/issues/20245",0.68214244,{"description":3111,"labels":3112,"number":3115,"owner":3030,"repository":3030,"state":3058,"title":3116,"updated_at":3117,"url":3118,"score":3119},"### Describe the feature\r\n\r\nThank you for Nuxt.\r\n\r\nNuxt and Vue 3 build the application with the latest ECMAScript standards, which is great.\r\n\r\nHowever, some applications still need to work with old web browsers and in my case SmartTVs.\r\n\r\nThe Vite plugin `@vitejs/plugin-legacy` seems ideal, but unfortunately not supported on Nuxt (despite the ability to add Vite plugins). More infos: https://github.com/nuxt/nuxt/issues/15464\r\n\r\nI did try to use an alternative from the Nuxt community `nuxt-vite-legacy`, but unfortunately it is not functional or not documented enough to use it easily.\r\n\r\nCould you make the `@vitejs/plugin-legacy` plugin compatible with Nuxt or add a section in the documentation explaining in detail how to use Babel with Nuxt or other similar services please?\r\n\r\n### Additional information\r\n\r\n- [ ] Would you be willing to help implement this feature?\r\n- [ ] Could this feature be implemented as a module?\r\n\r\n### Final checks\r\n\r\n- [X] Read the [contribution guide](https://nuxt.com/docs/community/contribution).\r\n- [X] Check existing [discussions](https://github.com/nuxt/nuxt/discussions) and [issues](https://github.com/nuxt/nuxt/issues).",[3113,3114],{"name":3054,"color":3055},{"name":3024,"color":3025},24232,"Support @vitejs/plugin-legacy","2023-11-23T20:59:07Z","https://github.com/nuxt/nuxt/issues/24232",0.6825679,{"description":3121,"labels":3122,"number":3129,"owner":3030,"repository":3130,"state":3058,"title":3131,"updated_at":3132,"url":3133,"score":3134},"I've explored other font providers, looks like `fontsource` is also quite promising.\r\n\r\nCurrently most of its fonts are from Google Fonts, along with some icons and some other fonts. It's also the service that Cloudflare Fonts is fetching from.\r\n\r\n@danielroe Would you like to include this font provider? If so, I'd like to work on it.\r\n\r\nDocs: https://fontsource.org/docs",[3123,3126],{"name":3124,"color":3125},"enhancement","a2eeef",{"name":3127,"color":3128},"provider","1161A4",65,"fonts","feat: fontsource provider","2024-03-20T13:12:12Z","https://github.com/nuxt/fonts/issues/65",0.68519086,{"labels":3136,"number":3139,"owner":3030,"repository":3030,"state":3058,"title":3140,"updated_at":3141,"url":3142,"score":3143},[3137,3138],{"name":3054,"color":3055},{"name":3024,"color":3025},14639,"nuxt3.rc-8 not suppport element-plus","2023-01-19T17:38:16Z","https://github.com/nuxt/nuxt/issues/14639",0.68617237,["Reactive",3145],{},["Set"],["ShallowReactive",3148],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$faPtmPqt9ZIQo8gxmQAZyk2r-jETsiozF3b5Gkn7dsMg":-1},"/nuxt/nuxt/31878"]