```\r\n\r\nIt doesn't seem to be correct:\r\n\r\n\r\n\r\nHow to make it look correct, just like on the homepage?:\r\n\r\n\r\n\r\n",[2879],{"name":2857,"color":2858},4273,"How to use default Vue components elsewhere","2024-12-03T17:27:39Z","https://github.com/vuejs/vitepress/issues/4273",0.69790554,{"description":2886,"labels":2887,"number":2892,"owner":2860,"repository":2861,"state":2862,"title":2893,"updated_at":2894,"url":2895,"score":2896},"### Is your feature request related to a problem? Please describe.\n\nWhen the screen resolution is small, reading a document can feel cramped\n\n### Describe the solution you'd like\n\n\"Lock sidebar open\" and \"Close sidebar\". Features such as page options to expand or close the sidebar\n\n### Describe alternatives you've considered\n\n_No response_\n\n### Additional context\n\n_No response_\n\n### Validations\n\n- [X] Read the [Contributing Guidelines](https://github.com/vuejs/vitepress/blob/main/.github/contributing.md).\n- [X] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\n- [X] Read the [docs](https://vitepress.dev).\n- [X] Check that there isn't already an issue that asks for the same feature to avoid creating a duplicate.",[2888,2891],{"name":2889,"color":2890},"theme","0754FB",{"name":2857,"color":2858},3071,"Do you have a feature similar to Notion's \"Lock sidebar open\" and \"Close sidebar\"?","2025-03-02T18:10:34Z","https://github.com/vuejs/vitepress/issues/3071",0.71048516,{"description":2898,"labels":2899,"number":2904,"owner":2860,"repository":2861,"state":2862,"title":2905,"updated_at":2906,"url":2907,"score":2908},"### Is your feature request related to a problem? Please describe.\n\nDue to my markdown file is particularly large, resulting in packaged js file and the corresponding html file size are close to 3M b, which in turn leads to the browser first screen rendering DOM size is too large.\n\n### Describe the solution you'd like\n\nIs it possible to reduce the size of the first screen html and lazy load the rest of the dom?\r\n\n\n### Describe alternatives you've considered\n\n_No response_\n\n### Additional context\n\n\u003Cimg width=\"368\" alt=\"image\" src=\"https://github.com/vuejs/vitepress/assets/73653404/afe26e27-6e7a-489d-983a-42a6acbfff8e\">\r\n\n\n### Validations\n\n- [X] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\n- [X] Read the [docs](https://vitepress.dev).\n- [X] Read the [Contributing Guidelines](https://github.com/vuejs/vitepress/blob/main/.github/contributing.md).\n- [X] Check that there isn't already an issue that asks for the same feature to avoid creating a duplicate.",[2900,2901],{"name":2857,"color":2858},{"name":2902,"color":2903},"perf","378A61",3509,"DOM is oversized","2025-03-02T18:09:47Z","https://github.com/vuejs/vitepress/issues/3509",0.7237403,{"description":2910,"labels":2911,"number":2915,"owner":2860,"repository":2861,"state":2916,"title":2917,"updated_at":2918,"url":2919,"score":2920},"### Describe the bug\n\nI installed Vitepress, built then ran it locally following the documentation of Vercel and everything seemed fine. But when I deployed it to my personal Vercel, my site keeps loading the 404.html. When I visit the Output of Vercel, I couldn't find any index.html and only 404.html. \r\n\r\nHere is currently [the blog of mine](https://vitepress-doc-kappa.vercel.app/) that I deployed to Vercel.\r\n\r\nThis is my current source on Vercel:\r\n\r\n\r\nThis is my current output on Vercel:\r\n\r\n\r\n\n\n### Reproduction\n\nNot sure if this is the correct way to reproduce, but I'll list down the commands that I ran, from install command to deploy:\r\n\r\n```bash\r\nnpm add -D vitepress\r\nnpx vitepress init ./\r\nnpm run docs:build\r\nnpm run docs:preview\r\nvercel --prod\r\n```\n\n### Expected behavior\n\nPage should load index.html when visiting `/`.\n\n### System Info\n\n```Text\nSystem:\r\n OS: Windows 10 10.0.19043\r\n CPU: (4) x64 Intel(R) Pentium(R) CPU G4560 @ 3.50GHz\r\n Memory: 2.27 GB / 7.96 GB\r\n Binaries:\r\n Node: 20.0.0 - C:\\Program Files\\nodejs\\node.EXE\r\n npm: 9.6.4 - C:\\Program Files\\nodejs\\npm.CMD\r\n Browsers:\r\n Edge: Spartan (44.19041.1266.0), Chromium (120.0.2210.133)\r\n Internet Explorer: 11.0.19041.1566\r\n npmPackages:\r\n vitepress: ^1.0.0-rc.39 => 1.0.0-rc.39\n```\n\n\n### Additional context\n\nI use a fresh setup of Vitepress and deploy to a Vercel setting using Node v20.x (which as mentioned on Vercel that is still in Beta). However I did try Node v18.x on Vercel and the error is the same. \n\n### Validations\n\n- [X] Check if you're on the [latest VitePress version](https://github.com/vuejs/vitepress/releases/latest).\n- [X] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\n- [X] Read the [docs](https://vitepress.dev).\n- [X] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.",[2912],{"name":2913,"color":2914},"bug: pending triage","e99695",3460,"closed","Site auto loads 404.html after deployed to Vercel","2024-01-24T00:04:46Z","https://github.com/vuejs/vitepress/issues/3460",0.6688167,{"description":2922,"labels":2923,"number":2927,"owner":2860,"repository":2861,"state":2916,"title":2928,"updated_at":2929,"url":2930,"score":2931},"### Is your feature request related to a problem? Please describe.\r\n\r\nConveniently use content-adaptive layout in components on the home page\r\n\r\n### Describe the solution you'd like\r\n\r\n`.vitepress/theme/index.ts`:\r\n```ts\r\nimport HomePage from './component/HomePage'\r\n\r\nexport default {\r\n Layout: () => {\r\n return h(Theme.Layout, null, {\r\n 'home-features-after': () => h(HomePage),\r\n })\r\n },\r\n```\r\n\r\n---\r\n\r\n`HomePage.vue`:\r\n\r\n```html\r\n\u003Cscript setup lang=\"ts\">\r\nimport{ VPHomeContent } from 'vitepress/theme'\r\n\u003C/script>\r\n\r\n\u003Ctemplate>\r\n\t\u003CVPHomeContent>\r\n\t\t\u003C!-- my custom content -->\r\n\t\u003C/VPHomeContent>\r\n\u003C/template>\r\n```\r\n\r\n### Describe alternatives you've considered\r\n\r\n_No response_\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Validations\r\n\r\n- [X] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\r\n- [X] Read the [docs](https://vitepress.dev).\r\n- [X] Read the [Contributing Guidelines](https://github.com/vuejs/vitepress/blob/main/.github/contributing.md).\r\n- [X] Check that there isn't already an issue that asks for the same feature to avoid creating a duplicate.",[2924],{"name":2925,"color":2926},"contribution welcome","11E4B8",3954,"[New feature] export `VPHomeContent` to provide content-adaptive layout","2024-06-22T04:41:46Z","https://github.com/vuejs/vitepress/issues/3954",0.6965459,{"description":2933,"labels":2934,"number":2936,"owner":2860,"repository":2861,"state":2916,"title":2937,"updated_at":2938,"url":2939,"score":2940},"### Describe the bug\n\n如下图,我已经设置了type: module\r\n\r\n\r\n\r\n\n\n### Reproduction\n\n自定义主题中这么写的,然后去构建就会报错\r\n我知道主要的原因应该在@arco-design/web-vue/es/icon,我尝试取消这个导入,然后发现\r\ntheme/index.js\r\n```js\r\nimport { h } from 'vue'\r\nimport DefaultTheme from 'vitepress/theme'\r\nimport ArcoVue from '@arco-design/web-vue'\r\nimport * as ElementPlusIcons from \"@element-plus/icons-vue\"\r\nimport ArcoVueIcon from \"@arco-design/web-vue/es/icon\"\r\nimport './style.css'\r\n\r\nexport default {\r\n extends: DefaultTheme,\r\n Layout: () => {\r\n return h(DefaultTheme.Layout, null, {\r\n // https://vitepress.dev/guide/extending-default-theme#layout-slots\r\n })\r\n },\r\n enhanceApp({ app, router, siteData }) {\r\n for (const [key, component] of Object.entries(ElementPlusIcons)) {\r\n app.component(\"eleIcon\" + key, component)\r\n }\r\n app.use(ArcoVueIcon)\r\n app.use(ArcoVue)\r\n }\r\n}\r\n```\n\n### Expected behavior\n\n希望能够正常构建项目\n\n### System Info\n\n```Text\nSystem:\r\n OS: Windows 11 10.0.22631\r\n CPU: (20) x64 12th Gen Intel(R) Core(TM) i7-12700\r\n Memory: 5.27 GB / 31.75 GB\r\n Binaries:\r\n Node: 18.20.0 - C:\\Program Files\\nodejs\\node.EXE\r\n Yarn: 1.22.22 - C:\\Program Files\\nodejs\\yarn.CMD\r\n npm: 10.8.1 - C:\\Program Files\\nodejs\\npm.CMD\r\n pnpm: 9.3.0 - C:\\Program Files\\nodejs\\pnpm.CMD\r\n Browsers:\r\n Edge: Chromium (126.0.2592.68)\r\n Internet Explorer: 11.0.22621.3527\r\n npmPackages:\r\n vitepress: ^1.2.3 => 1.2.3\n```\n\n\n### Additional context\n\n_No response_\n\n### Validations\n\n- [X] Check if you're on the [latest VitePress version](https://github.com/vuejs/vitepress/releases/latest).\n- [X] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\n- [X] Read the [docs](https://vitepress.dev).\n- [X] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.",[2935],{"name":2913,"color":2914},3993,"开发环境正常运行,但是构建时会报错","2024-07-05T04:42:37Z","https://github.com/vuejs/vitepress/issues/3993",0.69903207,{"description":2942,"labels":2943,"number":2944,"owner":2860,"repository":2861,"state":2916,"title":2945,"updated_at":2946,"url":2947,"score":2948},"https://github.com/maomao1996/vitepress-nav-template/issues/44\n\n(You can use a browser to translate)\n\nThe general thing is that the author of a small website wants to change the copyright statement because he uses the same webpage template as me, but Vitepress is yours, and we only have the right to use it. I will also use your technology in the webpage.\n\nThey tried to change the ownership of their own websites to themselves, so as to \"report\" other gh-page websites with the same technology.\n\nI went to tell Maomao, and he was against it, but it was you upstream, so I wanted to mention it to you\n\n\n\n(I don't know if there's a language barrier to this passage)",[],4500,"I wonder what developers think?","2025-01-21T03:58:22Z","https://github.com/vuejs/vitepress/issues/4500",0.69978416,{"description":2950,"labels":2951,"number":2952,"owner":2860,"repository":2861,"state":2916,"title":2953,"updated_at":2954,"url":2955,"score":2956},"### Is your feature request related to a problem? Please describe.\n\nIt is recommended to support Hong Kong Holidays\n\n### Describe the solution you'd like\n\nIt is recommended to support Hong Kong Holidays\n\n### Describe alternatives you've considered\n\n_No response_\n\n### Additional context\n\n_No response_\n\n### Validations\n\n- [X] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\n- [X] Read the [docs](https://vitepress.dev).\n- [X] Read the [Contributing Guidelines](https://github.com/vuejs/vitepress/blob/main/.github/contributing.md).\n- [X] Check that there isn't already an issue that asks for the same feature to avoid creating a duplicate.",[],3753,"It is recommended to support Hong Kong Holidays","2024-04-28T12:25:07Z","https://github.com/vuejs/vitepress/issues/3753",0.71167433,["Reactive",2958],{},["Set"],["ShallowReactive",2961],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fuKoHSuB_cvqp3-L8-uLahdr-WOVwja6h068aOTMiuk4":-1},"/vuejs/vitepress/3051"]