`\n\n### Describe the bug\n\n\r\nAfter updating to version 3.7.3 NuxtPage stopped working in the entire project\r\n\r\n```\r\nUncaught (in promise) Error: Page Not Found\r\n at createError (index.mjs?v=2a803633:78:15)\r\n at createError (null:31:16)\r\n at index.vue:37:11\r\n```\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2926,2927,2928],{"name":2872,"color":2873},{"name":2887,"color":2888},{"name":2929,"color":2930},"❗ p4-important","D93F0B",23219," NuxtPage doesn`t work in Nuxt 3.7.3","2024-03-17T16:52:10Z","https://github.com/nuxt/nuxt/issues/23219",0.65094596,{"labels":2937,"number":2940,"owner":2863,"repository":2863,"state":2878,"title":2941,"updated_at":2942,"url":2943,"score":2944},[2938,2939],{"name":2872,"color":2873},{"name":2875,"color":2876},14101,"dev error: (node:42372) Warning: To load an ES module, set \"type\": \"module\" in the package.json or use the .mjs extension. (Use `node --trace-warnings ...` to show where the warning was created)","2024-08-18T21:58:56Z","https://github.com/nuxt/nuxt/issues/14101",0.65231735,{"description":2946,"labels":2947,"number":2953,"owner":2863,"repository":2896,"state":2878,"title":2954,"updated_at":2955,"url":2956,"score":2957},"### Environment\n\n- Operating System: Darwin\n- Node Version: v20.12.0\n- Nuxt Version: - (using vue@latest)\n- CLI Version: 3.15.0\n- Nitro Version: -\n- Package Manager: pnpm@9.0.4\n- Builder: -\n- User Config: -\n- Runtime Modules: -\n- Build Modules: -\n\n### Version\n\nv3.0.0-alpha.8\n\n### Reproduction\n\nhttps://github.com/zugende/nuxt-ui-type-error-repro\n\n### Description\n\nWhen creating a fresh standalone Vue app using `pnpm create vue@latest` and then installing nuxt/ui by following the instructions here: https://ui3.nuxt.dev/getting-started/installation/vue one get type errors during the build process running `pnpm build`.\n\n👀 Update 15. Nov: Workaround is to disable type-check in your build command\n``` bash\n❌ \"build\": \"run-p type-check \\\"build-only {@}\\\" --\",\n✅ \"build-only\": \"vite build\",\n```\n\n### Additional context\n\n_No response_\n\n### Logs\n\n// more than 160 errors (shortened)\n\nnode_modules/.pnpm/@nuxt+ui@3.0.0-alpha.8_@babel+parser@7.26.2_embla-carousel@8.3.1_rollup@4.24.4_typescript@5.6_yljlai3w6pxxgcxew5prmihdom/node_modules/@nuxt/ui/dist/runtime/components/Tabs.vue:5:24 - error TS2307: Cannot find module '#build/app.config' or its corresponding type declarations.\n\n5 import _appConfig from '#build/app.config'\n ~~~~~~~~~~~~~~~~~~~\n\nnode_modules/.pnpm/@nuxt+ui@3.0.0-alpha.8_@babel+parser@7.26.2_embla-carousel@8.3.1_rollup@4.24.4_typescript@5.6_yljlai3w6pxxgcxew5prmihdom/node_modules/@nuxt/ui/dist/runtime/components/Textarea.vue:4:24 - error TS2307: Cannot find module '#build/app.config' or its corresponding type declarations.\n\n4 import _appConfig from '#build/app.config'\n ~~~~~~~~~~~~~~~~~~~\n\n[.....]\n\nFound 165 errors.",[2948,2949,2950],{"name":2887,"color":2888},{"name":2890,"color":2891},{"name":2951,"color":2952},"vue","42b883",2560,"Vue Vite plugin is causing type errors","2025-05-06T16:09:54Z","https://github.com/nuxt/ui/issues/2560",0.6547388,{"description":2959,"labels":2960,"number":2963,"owner":2863,"repository":2863,"state":2878,"title":2964,"updated_at":2965,"url":2966,"score":2967},"### Environment\r\n\r\n------------------------------\r\n- Operating System: `Darwin`\r\n- Node Version: `v17.9.0`\r\n- Nuxt Version: `3.0.0-rc.10`\r\n- Nitro Version: `0.5.5-27756662.9e9cfe0`\r\n- Package Manager: `npm@8.5.5`\r\n- Builder: `vite`\r\n- User Config: `-`\r\n- Runtime Modules: `-`\r\n- Build Modules: `-`\r\n------------------------------\r\n\r\n### Reproduction\r\n\r\nplugin \r\n\r\n```\r\nimport { defineNuxtPlugin } from '#app'\r\n \r\nimport store from '@/store'\r\n \r\nexport default defineNuxtPlugin((nuxtApp) => {\r\n nuxtApp.vueApp.use(store)\r\n})\r\n```\r\n\r\nStore\r\n\r\n```\r\nimport { createStore } from \"vuex\";\r\nimport { auth } from \"./modules/auth\";\r\n\r\nexport default createStore({\r\n modules: {\r\n auth,\r\n },\r\n......\r\n});\r\n```\r\n\r\npackage.json\r\n\r\n```\r\n{\r\n \"private\": true,\r\n \"scripts\": {\r\n \"build\": \"nuxt build\",\r\n \"dev\": \"nuxt dev\",\r\n \"generate\": \"nuxt generate\",\r\n \"preview\": \"nuxt preview\",\r\n \"postinstall\": \"nuxt prepare\"\r\n },\r\n \"devDependencies\": {\r\n \"nuxt\": \"3.0.0-rc.10\"\r\n },\r\n \"dependencies\": {\r\n \"@codemirror/autocomplete\": \"github:codemirror/autocomplete\",\r\n \"@codemirror/lang-json\": \"github:codemirror/lang-json\",\r\n \"@codemirror/view\": \"github:codemirror/view\",\r\n \"@fortawesome/fontawesome-svg-core\": \"^6.2.0\",\r\n \"@fortawesome/free-brands-svg-icons\": \"^6.1.2\",\r\n \"@fortawesome/free-regular-svg-icons\": \"^6.1.2\",\r\n \"@fortawesome/free-solid-svg-icons\": \"^6.1.2\",\r\n \"@fortawesome/vue-fontawesome\": \"^3.0.1\",\r\n \"ajv\": \"^8.11.0\",\r\n \"ajv-formats\": \"^2.1.1\",\r\n \"axios\": \"^0.21.4\",\r\n \"chart.js\": \"^3.9.1\",\r\n \"clipboard\": \"^2.0.11\",\r\n \"codemirror\": \"^6.0.1\",\r\n \"cytoscape\": \"^3.22.1\",\r\n \"cytoscape-dagre\": \"^2.4.0\",\r\n \"lodash\": \"^4.17.21\",\r\n \"mark.js\": \"^8.11.1\",\r\n \"moment\": \"^2.29.4\",\r\n \"papaparse\": \"^5.3.2\",\r\n \"renderjson\": \"^1.4.0\",\r\n \"showdown\": \"^2.1.0\",\r\n \"simple-notify\": \"^0.5.5\",\r\n \"sweetalert2\": \"^11.4.33\",\r\n \"tabulator-tables\": \"^5.3.2\",\r\n \"tippy.js\": \"^6.3.7\",\r\n \"vue-gtag-next\": \"^1.14.0\",\r\n \"vue-router\": \"^4.1.2\",\r\n \"vue-sweetalert2\": \"^5.0.5\",\r\n \"vuex\": \"^4.0.2\"\r\n }\r\n}\r\n```\r\n\r\nRun \r\n`npm run dev`\r\n\r\n### Describe the bug\r\n\r\nIt was all working fine then after trying to run the app again with no changes this error popped up and all my work has come to a complete stop.\r\nI can't describe the bug any further as I can't spot the issue, very similar to this issue: https://stackoverflow.com/questions/73284702/nuxt-3-pinia-h3-unhandled-h3error-vite-ssr-import-0-definestore-is\r\n\r\n\r\nI did notice that Nuxt's MHR stopped working before this happened, I had to refresh to see any changes. Only thing I did was restart the app then I was hit with this error.\r\n\r\n\u003Cimg width=\"1021\" alt=\"Screen Shot 2022-10-10 at 2 44 05 PM\" src=\"https://user-images.githubusercontent.com/23092057/194956936-9ac37569-7974-46af-903a-78c2665dad25.png\">\r\n\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Logs\r\n\r\n```shell\r\n[nuxt] [request error] [unhandled] [500] __vite_ssr_import_0__.createStore is not a function\r\n at ./store/index.js:26:54\r\n at runMicrotasks (\u003Canonymous>)\r\n at processTicksAndRejections (node:internal/process/task_queues:96:5)\r\n at async ViteNodeRunner.directRequest (./node_modules/vite-node/dist/client.mjs:251:5)\r\n at async ViteNodeRunner.cachedRequest (./node_modules/vite-node/dist/client.mjs:128:12)\r\n at async request (./node_modules/vite-node/dist/client.mjs:151:16)\r\n at async ./plugins/store.js:4:31\r\n at async ViteNodeRunner.directRequest (./node_modules/vite-node/dist/client.mjs:251:5)\r\n at async ViteNodeRunner.cachedRequest (./node_modules/vite-node/dist/client.mjs:128:12)\r\n at async request (./node_modules/vite-node/dist/client.mjs:151:16)\r\n[nuxt] [request error] [unhandled] [500] __vite_ssr_import_0__.createStore is not a function\r\n at ./store/index.js:26:54\r\n at runMicrotasks (\u003Canonymous>)\r\n at processTicksAndRejections (node:internal/process/task_queues:96:5)\r\n at async ViteNodeRunner.directRequest (./node_modules/vite-node/dist/client.mjs:251:5)\r\n at async ViteNodeRunner.cachedRequest (./node_modules/vite-node/dist/client.mjs:128:12)\r\n at async request (./node_modules/vite-node/dist/client.mjs:151:16)\r\n at async ./plugins/store.js:4:31\r\n at async ViteNodeRunner.directRequest (./node_modules/vite-node/dist/client.mjs:251:5)\r\n at async ViteNodeRunner.cachedRequest (./node_modules/vite-node/dist/client.mjs:128:12)\r\n at async request (./node_modules/vite-node/dist/client.mjs:151:16)\r\n```\r\n",[2961,2962],{"name":2872,"color":2873},{"name":2875,"color":2876},15129,"Unable to run in development mode but production build works","2023-01-19T17:45:09Z","https://github.com/nuxt/nuxt/issues/15129",0.65540296,["Reactive",2969],{},["Set"],["ShallowReactive",2972],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fcALh5SX8wn622uA_4rY_46_qO9I8TVb1UCsnY548lm4":-1},"/nuxt/ui/2823"]