\r\n\r\nbut in Layout.vue it uses Header and Header uses themeConfig that is a Symbol: \r\n```vue\r\n// Layout.vue\r\n\u003Ctemplate>\r\n \u003CHeader :nav=\"Navlist\">\u003C/Header>\r\n\u003C/template>\r\n\r\n\u003Cscript setup lang=\"ts\">\r\nimport Header from \"../header/index.vue\";\r\n\u003C/script>\r\n// Header.vue\r\n\u003Cscript setup lang=\"ts\">\r\nimport { inject, computed } from \"vue\";\r\nimport { themeConfig } from \"../../compositions/configProvider\"; // Notice this line\r\n\r\nconst theme = inject(themeConfig)!; // Notice this line\r\n```\r\nIn Header.vue, themeConfig exists in myTheme/src/compositions/configProvider.ts, \r\nbut in .vitepress/cache/deps/myTheme.js, it also exits a themeConfig.\r\ntwo themeConfig, two Symbol.\r\n***In the result***, provide/inject is fail.\r\n\r\n\r\nIn development this is bad, in production, the configProvider module is not extracted, the themeConfig variable is unique.\n\n### Reproduction\n\nas mentioned earlier\n\n### Expected behavior\n\nIn development, some es module that come from node_modules ain't extracted, the variable don't be duplicated.\n\n### System Info\n\n```Text\nSystem:\r\n OS: Windows 11 10.0.22000\r\n Binaries:\r\n Node: 18.16.0\r\n pnpm: 8.6.0\r\n npmPackages:\r\n vitepress: 1.0.0-rc.31\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.",[2903,2906],{"name":2904,"color":2905},"need more info","bdbefc",{"name":2869,"color":2870},3292,"Theme is made into npm package, if use the theme, Symbol is duplicated in dev.","2024-03-07T11:19:22Z","https://github.com/vuejs/vitepress/issues/3292",0.74617225,{"description":2913,"labels":2914,"number":2919,"owner":2872,"repository":2873,"state":2874,"title":2920,"updated_at":2921,"url":2922,"score":2923},"### Describe the bug\n\nAs my title, in my project, seems it happens every single time in production. Every time trying access to an article and then this issue came up with the should-be-displayed splashed for a second.\r\n\r\n\n\n### Reproduction\n\nSeems this issue only happened in mine.\r\nIn that case, to reproduce the issue, you need to access to https://blog.gostatus.cn/categories/others/2024/08/02/doit\r\nand choose any article, and then try to refresh the page.\r\nand you can also try to copy that page's address and try to access it in a new tab.\n\n### Expected behavior\n\nThe article showed normally without a totally blank page after a splash.\r\n\n\n### System Info\n\n```Text\nvitepress \"1.3.2\",\r\ngithubpage\n```\n\n\n### Additional context\n\nI apologize if this is caused by our misoperate during configuration. Visit https://github.com/reckless-huang/blog-vite check our configuration, if someone found something miserable and do have an idea to fix this, please tell me, I will be sincerely appreciated for your help.\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.",[2915,2918],{"name":2916,"color":2917},"bug: pending triage","e99695",{"name":2869,"color":2870},4107,"Content disappeared after navigation (refresh on page or navigation accessing to page) ","2024-12-03T17:28:03Z","https://github.com/vuejs/vitepress/issues/4107",0.7753465,{"description":2925,"labels":2926,"number":2928,"owner":2872,"repository":2873,"state":2929,"title":2930,"updated_at":2931,"url":2932,"score":2933},"### Describe the bug\n\n\r\n复现方式,在服务器部署后,访问具体的某一个子菜单后,鼠标选中浏览器地址,按下enter键。就会导致如图效果,首页会和选中页面重合\n\n### Reproduction\n\n在服务器部署后,访问具体的某一个子菜单后,鼠标选中浏览器地址,按下enter键\r\n例如 :\r\n我已经定位到这个具体的菜单 : http://127.0.0.1:80/demo/specify01\r\n\r\n当我在浏览器地址栏使用鼠标选中地址栏并且按下enter键的时候,就会出现上面的情况\n\n### Expected behavior\n\n我希望我在定位到具体的菜单后,在浏览器快速访问时,会帮我定位到具体的菜单,而不是和首页重合\n\n### System Info\n\n```sh\n1.0.0-beta.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.",[2927],{"name":2916,"color":2917},2556,"closed","页面与首页重合","2023-07-07T00:04:41Z","https://github.com/vuejs/vitepress/issues/2556",0.7160064,{"description":2935,"labels":2936,"number":2939,"owner":2872,"repository":2873,"state":2929,"title":2940,"updated_at":2941,"url":2942,"score":2943},"### Describe the bug\r\n\r\nSetting the base path on GitHub pages does not update the path for logo\r\n\r\n### Reproduction\r\n\r\n1. Create a new app\r\n2. Set the `base` path to something eg: `/hello/`\r\n3. Set your logo to `/logo.\u003Cext>`\r\n\r\nHere is what I have - https://github.com/akshaybabloo/dotfiles/tree/main/docs\r\n\r\n### Expected behavior\r\n\r\nThe path after generation should be `\u003Culr>/hello/logo.\u003Cext>` but it generates `\u003Curl>/logo.\u003Cext>`\r\n\r\n### System Info\r\n\r\n```Text\r\nSystem:\r\n OS: Linux 6.2 Ubuntu 22.04.3 LTS 22.04.3 LTS (Jammy Jellyfish)\r\n CPU: (16) x64 11th Gen Intel(R) Core(TM) i7-11850H @ 2.50GHz\r\n Memory: 18.87 GB / 31.07 GB\r\n Container: Yes\r\n Shell: 5.1.16 - /bin/bash\r\n Binaries:\r\n Node: 20.5.1 - ~/.nvm/versions/node/v20.5.1/bin/node\r\n Yarn: 1.22.19 - ~/.npm-global/bin/yarn\r\n npm: 9.8.0 - ~/.nvm/versions/node/v20.5.1/bin/npm\r\n Browsers:\r\n Brave Browser: 117.1.58.127\r\n Chrome: 117.0.5938.88\r\n npmPackages:\r\n vitepress: ^1.0.0-rc.12 => 1.0.0-rc.14\r\n```\r\n\r\n\r\n### Additional context\r\n\r\nI am using Bun as my package manager.\r\n\r\n### Validations\r\n\r\n- [X] Check if you're on the [latest VitePress version](https://github.com/vuejs/vitepress/releases/latest).\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] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.",[2937,2938],{"name":2916,"color":2917},{"name":2869,"color":2870},2981,"Setting base path doesn't set logo path","2024-01-29T00:04:27Z","https://github.com/vuejs/vitepress/issues/2981",0.7224633,{"description":2945,"labels":2946,"number":2947,"owner":2872,"repository":2873,"state":2929,"title":2948,"updated_at":2949,"url":2950,"score":2951},"### Is your feature request related to a problem? Please describe.\n\n\r\n(The Home Page)\r\n\r\n\r\n(The Download Page)\r\n\r\nbut, the style:\r\n```\r\n --vp-home-hero-image-background-image: linear-gradient(\r\n -45deg,\r\n #186068 50%,\r\n #00e5ff 50%\r\n );\r\n```\r\nConflict with the \"Download\" page (i.e. Download does not require this style, but the home page does)\r\n\r\n\n\n### Describe the solution you'd like\n\nAdd image2? It means defining some content as images, and the content can be changed through style.css\n\n### Describe alternatives you've considered\n\nAdd the following code to \"/download/index. md\":\r\n\r\n```\r\n\u003Cstyle moudle>\r\n:root {\r\n --vp-home-hero-image-background-image: none;\r\n}\r\n\u003C/style>\r\n```\r\nBut it was found that this string of code may affect home (whether it is\u003Cstyle>,\u003Cstyle module>, or\u003Cstyle scoped>)\r\n\r\nMaybe it's a problem with my server?\n\n### Additional context\n\nhome page:\r\n```\r\n---\r\n# https://vitepress.dev/reference/default-theme-home-page\r\nlayout: home\r\n\r\nhero:\r\n name: \"Cr-DGC\"\r\n text: \"不纯粹的石榴石晶体\"\r\n tagline: 基于Minecraft原版制作的PBR材质包\r\n image: \r\n src: \"/images/home_logo.png\"\r\n actions:\r\n - theme: brand\r\n text: Get Start\r\n link: /docs/\r\n - theme: alt\r\n text: Download\r\n link: /download/\r\n\r\nfeatures:\r\n - title: XXX\r\n details:XXX\r\n - title: XXX\r\n details: XXX\r\n - title: XXX\r\n details: XXX\r\n---\r\n\r\n```\r\n\r\nDownload Page:\r\n\r\n```\r\n\r\n---\r\nlayout: home\r\nprev: false\r\nnext: false\r\nsidebar: false\r\n\r\nhero:\r\n name: \"Cr-DGC\"\r\n text: \"不纯粹的石榴石晶体\"\r\n tagline: 基于Minecraft原版制作的PBR材质包\r\n image: \r\n src: \"/images/home_logo.png\"\r\n actions:\r\n - theme: brand\r\n text: 下载开源版本\r\n link: /docs/\r\n - theme: alt\r\n text: 下载赞助版本\r\n link: /download/\r\n\r\n---\r\n\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.",[],3681,"Set like \"images2\"","2024-04-28T12:25:29Z","https://github.com/vuejs/vitepress/issues/3681",0.7265938,{"description":2953,"labels":2954,"number":2955,"owner":2872,"repository":2873,"state":2929,"title":2956,"updated_at":2957,"url":2958,"score":2959},"### Is your feature request related to a problem? Please describe.\n\nyes, sometimes code samples are too large to fit on the full screen or the size of screen the user is on\n\n### Describe the solution you'd like\n\nI'd like to allow for a button next to the copy button on code blocks that allows the user to wrap the code blocks\r\n\r\n\u003Cimg width=\"190\" alt=\"testing 2023-08-18 at 10 28 07\" src=\"https://github.com/vuejs/vitepress/assets/46639943/7e404a6c-3405-4b4c-a56a-0174c49c339f\">\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.",[],2815,"Allow wrapping of code blocks","2023-08-26T00:04:05Z","https://github.com/vuejs/vitepress/issues/2815",0.7449146,{"description":2961,"labels":2962,"number":2963,"owner":2872,"repository":2873,"state":2929,"title":2964,"updated_at":2965,"url":2966,"score":2967},"### Is your feature request related to a problem? Please describe.\n\n你好,我在md文件引入了自己的vue组件,但外层有一个.vp-doc元素自带的一堆样式总是会影响到自己开发的组件样式,这种情况该如果解决?\n\n### Describe the solution you'd like\n\n\r\n比如ezlist 引入了tabel,那就会受到.vp-doc的这行影响,从而改变布局\r\n.vp-doc table {\r\n display: block;\r\n border-collapse: collapse;\r\n margin: 20px 0;\r\n overflow-x: auto;\r\n}\r\n\r\n# list.md 文件\r\n\u003CEzList>\u003C/Ezlist>\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.",[],2551,"自己定义的vue组件总是受到外层.vp-doc样式影响","2023-09-02T00:04:13Z","https://github.com/vuejs/vitepress/issues/2551",0.74874294,["Reactive",2969],{},["Set"],["ShallowReactive",2972],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fKZNQ2-H3BKiIBjuitaoC14JxZNquwklzkcpYPYVj1QE":-1},"/vuejs/vitepress/3399"]