\r\n```\r\nIt works fine with the localhost via the command ` yarn docs:dev`\r\nbut when `yarn docs:build`, I got an error.\r\nHow can I do?\n\n### Describe the solution you'd like\n\nSupport the video control.\r\n\r\nI set up the site in LAN and won't expose to the WAN, the storage is no problem.\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.vuejs.org).\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.",[],1477,"closed","embed video in markdown with vitepress","2023-01-21T14:25:05Z","https://github.com/vuejs/vitepress/issues/1477",0.7281847,{"description":2943,"labels":2944,"number":2948,"owner":2872,"repository":2873,"state":2937,"title":2949,"updated_at":2950,"url":2951,"score":2952},"### Describe the bug\r\n\r\nWhen I go to my FAQ tab, for example, I have a series of articles in my sidebar. \r\nFor each of them the link to the next page is always the link to the first article.\r\n\r\n### Reproduction\r\n\r\nMy configuration is something like this\r\n```\r\n\"/en/faq/\": [\r\n {\r\n text: 'FAQ',\r\n items: [\r\n { text: 'foo text', link: './foo-link' },\r\n { text: 'bar text', link: './bar-link' },\r\n```\r\nIf I modify it to :\r\n\r\n```\r\n\"/en/faq/\": [\r\n {\r\n text: 'FAQ',\r\n items: [\r\n { text: 'foo text', link: '/en/faq/foo-link' },\r\n { text: 'bar text', link: '/en/faq/bar-link' },\r\n```\r\nIt works correctly but I think it's a bit of a pain to have to add the prefix to all links.\r\n\r\n### Expected behavior\r\n\r\nI would expect it to work correctly with:\r\n```\r\n\"/en/faq/\": [\r\n {\r\n text: 'FAQ',\r\n items: [\r\n { text: 'foo text', link: './foo-link' },\r\n { text: 'bar text', link: './bar-link' },\r\n```\r\n\r\n### System Info\r\n\r\n```Text\r\nSystem:\r\n OS: Linux 6.4 Fedora Linux 38 (Container Image)\r\n CPU: (12) x64 11th Gen Intel(R) Core(TM) i5-11400H @ 2.70GHz\r\n Memory: 8.57 GB / 15.25 GB\r\n Container: Yes\r\n Shell: 5.2.15 - /bin/bash\r\n Binaries:\r\n Node: 20.3.1 - ~/.nvm/versions/node/v20.3.1/bin/node\r\n npm: 9.6.7 - ~/.nvm/versions/node/v20.3.1/bin/npm\r\n npmPackages:\r\n vitepress: ^1.0.0-rc.10 => 1.0.0-rc.13 \r\n```\r\n\r\n\r\n### Additional context\r\n\r\n_No response_\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.",[2945],{"name":2946,"color":2947},"bug: pending triage","e99695",2961,"Error in Previous page and Next page","2023-09-22T00:04:20Z","https://github.com/vuejs/vitepress/issues/2961",0.73368835,{"description":2954,"labels":2955,"number":2956,"owner":2872,"repository":2873,"state":2937,"title":2957,"updated_at":2958,"url":2959,"score":2960},"### 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.7366471,{"description":2962,"labels":2963,"number":2965,"owner":2872,"repository":2873,"state":2937,"title":2966,"updated_at":2967,"url":2968,"score":2969},"### Is your feature request related to a problem? Please describe.\r\n\r\nIt would be better to write examples in single place.\r\n\r\n### Describe the solution you'd like\r\n\r\nInput:\r\n```\r\n\u003C\u003C\u003C @/snippets/snippet-with-example.js...?\r\n```\r\n\r\nCode file:\r\n```ts\r\n/**\r\n * Adds two numbers together.\r\n * \r\n * @example\r\n * Here's a simple example:\r\n * ```\r\n * // Prints \"2\":\r\n * console.log(add(1,1));\r\n * ```\r\n * \r\n * @example\r\n * Here's an example with negative numbers:\r\n * ```\r\n * // Prints \"0\":\r\n * console.log(add(1,-1));\r\n * ```\r\n */\r\nexport function add(x: number, y: number): number {\r\n}\r\n```\r\n\r\nOutput:\r\n\r\nHere's a simple example:\r\n```js\r\n// Prints \"2\":\r\nconsole.log(add(1,1));\r\n```\r\n\r\nHere's an example with negative numbers:\r\n```js\r\n// Prints \"0\":\r\nconsole.log(add(1,-1));\r\n```\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.vuejs.org).\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.",[2964],{"name":2866,"color":2867},1316,"Importing code snippet from jsdoc, tsdoc @example","2023-08-12T00:04:39Z","https://github.com/vuejs/vitepress/issues/1316",0.7390355,["Reactive",2971],{},["Set"],["ShallowReactive",2974],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fe7_do0TwrRcEfMOOm5siPLZK8FR0dps-HC7efFV5-_w":-1},"/vuejs/vitepress/2731"]