core icon indicating copy to clipboard operation
core copied to clipboard

Vue-Powered Static Site Generator

Results 89 core issues
Sort by recently updated
recently updated
newest added

This adds relative link support for `resolveRoute`

### Description When I go to the document everything works ![1](https://github.com/vuepress/core/assets/26163841/bedfcd1c-650a-4b61-bc99-f6d75d8b68fd) 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...

enhancement
package:bundler-webpack

### Description See ecosystem, when removing the `as ClientConfig` and type import, type errors are still seen ![image](https://github.com/vuepress/core/assets/33315834/2a63b4f4-4e9f-465a-bca5-bfc17062f887) ### Reproduction https://github.com/vuepress/ecosystem ### Used Package Manager pnpm ### System Info ```shell...

bug
upstream bug

### 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...

enhancement
package:client

### 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...

feature
package:core
package:client

### 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...

bug
package:bundler-webpack

### 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...

enhancement
contribution welcome