\n\nHaven't had the opportunity to go through them all, likely the same in other places for (ex-)Pro components.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3277,3280,3281],{"name":3278,"color":3279},"bug","d73a4a",{"name":3178,"color":3179},{"name":3282,"color":3176},"v4",5050,"Missed some Documentation Updates","2025-09-23T19:17:03Z","https://github.com/nuxt/ui/issues/5050",0.78411555,{"description":3289,"labels":3290,"number":3293,"owner":3186,"repository":3186,"state":3188,"title":3294,"updated_at":3295,"url":3296,"score":3297},"### Environment\n\n\n\n\nlocal dev env\n\n### Reproduction\n\nnull\n\n### Describe the bug\n\nLocal development, with the integration of element plus, found that the startup was particularly slow. It was discovered that requests were made to files in node_modules, causing a waterfall of requests. The development experience was particularly poor, and I am not sure if it is a problem with element plus in Nuxt, Vite, or Nuxt modules\n\n- Nuxt3 is developed locally, without any optimization of the modules in Node.js? Or is there no optimization for the underlying Vite in local development?\n- I connected the element plus module and found that many small modules were requested, causing network congestion\n\n\n### Additional context\n```json\n{\n \"name\": \"web-ssr\",\n \"private\": true,\n \"type\": \"module\",\n \"scripts\": {\n \"dev\": \"nuxt dev --dotenv env/.env.development\",\n \"staging\": \"nuxt dev --dotenv env/.env.staging\",\n \"prod\": \"nuxt dev --dotenv env/.env.prod\",\n \"build:dev\": \"nuxt build --modern --dotenv env/.env.development\",\n \"build:staging\": \"nuxt build --modern --dotenv env/.env.staging\",\n \"build:prod\": \"nuxt build --modern --dotenv env/.env.prod\",\n \"generate\": \"nuxt generate\",\n \"preview\": \"nuxt preview\",\n \"postinstall\": \"nuxt prepare\"\n },\n \"dependencies\": {\n \"@element-plus/icons-vue\": \"2.3.1\",\n \"@element-plus/nuxt\": \"1.0.9\",\n \"@pinia-plugin-persistedstate/nuxt\": \"^1.2.0\",\n \"@pinia/nuxt\": \"^0.5.1\",\n \"@types/lodash-es\": \"^4.17.12\",\n \"@zhihaoscm-transport-web/business-components\": \"workspace:^\",\n \"@zhihaoscm-transport-web/components\": \"workspace:^\",\n \"@zhihaoscm-transport-web/entity\": \"workspace:^\",\n \"@zhihaoscm-transport-web/meta\": \"workspace:^\",\n \"axios\": \"^1.7.7\",\n \"dotenv\": \"^16.4.5\",\n \"lodash-es\": \"^4.17.21\",\n \"moment\": \"^2.30.1\",\n \"nprogress\": \"^0.2.0\",\n \"nuxt\": \"3.14.0\",\n \"ol\": \"^7.4.0\",\n \"pinia\": \"^2.1.7\",\n \"pinia-plugin-persistedstate\": \"^4.1.1\",\n \"qs\": \"^6.13.0\",\n \"swiper\": \"^11.1.14\",\n \"vue\": \"^3.4.27\",\n \"vue-router\": \"^4.3.2\"\n },\n \"devDependencies\": {\n \"@rollup/plugin-typescript\": \"^11.1.6\",\n \"@types/crypto-js\": \"^4.2.2\",\n \"nuxt-lodash\": \"^2.5.3\",\n \"sass\": \"^1.77.2\",\n \"typescript\": \"5.4.5\",\n \"unplugin-vue-components\": \"^0.27.4\"\n }\n}\n```\n\n\nnuxt.config.ts\n\n```ts\nimport * as dotenv from \"dotenv\";\nimport path from \"path\";\n\n// 手动指定.env文件的路径\n// 加载.env文件\ndotenv.config({ path: path.resolve(process.cwd(), \"env/.env\") });\n\nexport default defineNuxtConfig({\n srcDir: \"src/\",\n\n components: {\n dirs: [{ path: \"@/components\" }]\n },\n\n devServer: {\n host: \"0.0.0.0\",\n port: 3000\n },\n\n //模块导入\n modules: [\"@pinia/nuxt\", \"nuxt-lodash\", \"@pinia-plugin-persistedstate/nuxt\", \"@element-plus/nuxt\"],\n\n css: [\n \"element-plus/dist/index.css\",\n \"element-plus/theme-chalk/display.css\",\n\n \"@/assets/iconfont/iconfont.css\"\n ],\n\n runtimeConfig: {\n\n public: {\n publicPath: process.env.NUXT_PUBLIC_PATH || \"\",\n routerMode: process.env.NUXT_ROUTER_MODE || \"\",\n apiUrl: process.env.NUXT_API_URL || \"\",\n ships66CodeJs: process.env.NUXT_SHIPS66_CODE_JS,\n miniAppQrCode: process.env.NUXT_MINI_APP_QR_CODE,\n env: process.env.NUXT_USER_NODE_ENV\n }\n },\n\n app: {\n },\n\n nitro: {\n devProxy: {\n \"/api\": {\n target: process.env.NUXT_API_URL,\n changeOrigin: true,\n prependPath: true\n }\n },\n routeRules: {\n \"/api/**\": {\n proxy: `${process.env.NUXT_API_URL}/**`\n }\n }\n },\n build: {\n transpile: [\"element-plus\"]\n },\n\n vite: {\n css: {\n preprocessorOptions: {\n scss: {\n additionalData: '@use \"sass:math\"; @import \"@/assets/styles/colors.scss\";'\n }\n }\n },\n server: {\n strictPort: true,\n hmr: {\n overlay: false,\n host: \"0.0.0.0\",\n port: 3000\n }\n },\n plugins: [\n ]\n },\n\n compatibilityDate: \"2024-10-18\"\n});\n\n```\n### Logs\n\n```shell-script\n\n```",[3291,3292],{"name":3200,"color":3201},{"name":3203,"color":3204},31413,"Request waterfall flow","2025-03-24T23:19:24Z","https://github.com/nuxt/nuxt/issues/31413",0.784166,["Reactive",3299],{},["Set"],["ShallowReactive",3302],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fJ-tJv8i6Zf_LvUIDjtATXum0qniiwccm6P5IxLW6FO4":-1},"/nuxt/ui/4508"]