core
core copied to clipboard
Vue-Powered Static Site Generator
This adds relative link support for `resolveRoute`
### Description When I go to the document everything works  When you copy the link in a line and open it in a new tab, it doesn’t work https://vuepress.github.io/guide/getting-started.html#try-it-online...
### Description Technically speaking, webpack-chain never adds support for webpack v5, and the latest version was published 4 years ago The maintainer already deprecates the package, so we'd better drop...
### Description See ecosystem, when removing the `as ClientConfig` and type import, type errors are still seen  ### Reproduction https://github.com/vuepress/ecosystem ### Used Package Manager pnpm ### System Info ```shell...
### Description 组件中使用router进行路由跳转会丢失query参数,如下的代码所示,实际跳过去的页面后面没有query的参数,可以通过下面的复现链接点击页面中的`测试`按钮查看效果。不知道是从哪个版本就失效了,之前一直是有用的。 ```ts 测试 import { useRouter } from 'vue-router'; const router = useRouter(); function testClick() { router.push({ path: '/test', query: { type: '123', }, }); } ``` ###...
### Description `resolveRoute` should support relative path, just like `router.resolve()` E.g.: ```ts // at /page/a.html resolve('b.html') // should be /page/b.html resolve('../') // should be / ``` ## Why this is...
### Clear and concise description of the problem What's your attitude about supporting clean url? E.g.: `/a.html` becomes `/a` Although this could be a plugin, but I believe supporting it...
### Description Webpack fails when using assets file in packages. E.g.: ``` packageA a.js a.jpg a.css a.ttf ``` ```scss // a.css @font-face { // ... src: url("./a.ttf") // expecting the...
### Clear and concise description of the problem Allow the same code line selection for imports as for highlighting. This will make adding instructions from runnable files easier since there...