Divyansh Singh

Results 492 comments of Divyansh Singh
trafficstars

Easiest way would be to just use symlinks: ```ts // .vitepress/config.ts export default defineConfig({ vite: { resolve: { preserveSymlinks: true } } }) ``` ```sh ln -s v2/guide/ ./guide ln...

Without symlinks, one of the way is just 404 it and redirect it from there. Because for general stuff it can't be supported properly (for example you want any request...

Ah yeah, https://www.youtube.com/watch?v=xXrhg26VCSc (around 46 minute mark)

Hmm, astro supports redirects which can be determined statically. We can also support those. But wildcard redirects cannot be easily supported in a SSG 👀

not any easy way, you'll need to manually use `v-html` or `useScriptTag` from vueuse 👀 raw script tags are not allowed by vue, not sure if we can bypass it...

Cannot find the reason without looking at your code. Please provide a minimal reproducible example. Some component of yours might not be SSR compatible. You will need to either make...

> You can get more helpful warnings I meant in browser console. Not your terminal. Is your repo public? > Only one global component Does it work if you remove...

What's the proposed API here? I believe the common way is to specify some delimiter like ``: ```md # Title first paragraph rest of article ```

Another question, how do you want to access this excerpt? Via useData or createContentLoader API maybe?

It is not meant to be used inside the table, etc. But I think it's fine to add that CSS by default.