Divyansh Singh
Divyansh Singh
> following the docs as setting the `aside: false` doesn't actually work It will be there in the next release.
Ah, let's keep this issue open for now. We need to fix certain things like making text optional or allowing link directly at top level. This was reported on #846...
> does this issue still exists in Vite3 based vitepress No, not happening for me on [`chore/vite-3`](https://github.com/vuejs/vitepress/tree/chore/vite-3) branch.
> When would the chore/vite-3 branches be merged into main? It will likely take some time because there are a lot of changes, its hard to review and test them....
@meteorlxy Resolved those. > It hard to review when mixing so many features in 😅 Yeah sorry for that 😅. All except that clean urls feature were direct results of...
@Lexpeartha can you create an issue and tell us how to reproduce that? Also, aside is for the right-side outline, ads thing and it's true by default.
> begin with special char No, its actually when heading "only" has special characters 😅.
@Topthinking #856 should fix these issues. It's not yet supported in the latest release. Please wait for some time. You can use dynamic imports for now.
Refer https://vitepress.vuejs.org/config/app-configs.html#head You'll need to do something like: ```js head: [ ['script', {src: 'https://googletagmanager.com/...'}], ['script', {}, `gtag call here`] ] ```
It will be given in your analytics console. It loads `gtag.js`. If you have head like this: ```js [ [ 'script', { async: '', src: 'https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXXX' } ], [ 'script',...