Evan You
a81b9e0ff1
refactor: re-expose $frontmatter global property, make localePath account for base by default
3 years ago
Evan You
76fa1733ff
fix: fix vue code block type indication
3 years ago
Evan You
0661063d29
feat: more efficient `useData()` method that exposes all data
...
BREAKING CHANGE:
- Individual `useX()` data methods are removed.
```js
// before
import { useSiteDataByRoute, usePageData } from 'vitepress'
const site = useSiteDataByRoute()
const page = usePageData()
const theme = computed(() => site.value.themeConfig)
// after
import { useData } from 'vitepress'
const { site, page, theme } = useData()
```
All destructured values are computed refs injected from app root
so they are created only once globally.
- Global mixin properties (e.g. `$site`) are removed. Always use
`useData()` to retrieve VitePress data.
3 years ago
Cédric Exbrayat
8988aadbcb
fix: functional templates with vue v3.1 ( #312 )
4 years ago
heny
b940397cd0
fix: chinese filenames can't build ( #217 ) ( #262 )
4 years ago
Han(ハン)
71a5e1c2a2
feat: exclude option ( #281 )
4 years ago
dnischeta
9589a5d0e6
fix(theme): set search box min-width for >=751px ( #286 )
4 years ago
Anthony Fu
6b4a4aa7a6
fix: remove unnecessary 'vite/dynamic-import-polyfill'
4 years ago
Anthony Fu
9f1b2b1ae2
chore: update deps
4 years ago
Máximo Mussini
e651f977d6
feat: Render titles for social sharing and improve home page sharing ( #263 )
4 years ago
云游君
3aa185fa9f
fix: detect public folder for dead link ( #290 )
...
* fix: detect public folder for dead link
* perf: use config.publicDir replace 'public'
4 years ago
Eduardo San Martin Morote
0716ffade7
fix(search): silence warning for prop
4 years ago
Eduardo San Martin Morote
de89c1e5eb
fix(locales): use correct lang ( #283 )
4 years ago
Domantas
fa469fd275
fix: build fails without css chunks ( #209 ) ( #239 )
...
Co-authored-by: Kia King Ishii <kia.king.08@gmail.com>
4 years ago
Babu Annamalai
d1a62e1c66
feat: import code snippet with region ( #237 ) ( #238 )
...
close #237
Co-authored-by: Kia King Ishii <kia.king.08@gmail.com>
4 years ago
Eduardo San Martin Morote
f505db945a
fix(locales): use correct lang ( #276 )
4 years ago
Jeff Yang
f385bc4673
fix(navbar): use css var for background-color ( #264 )
4 years ago
meteorlxy
cee0b400d9
refactor: remove extra condition ( #261 )
4 years ago
Eduardo San Martin Morote
8d915245c6
fix(css): reuse css vars ( #256 )
4 years ago
Eduardo San Martin Morote
9bc5c5c631
style: format code with prettier
4 years ago
Igor Randjelovic
f8b4aa5baa
fix: badge for language-javascript ( #245 )
4 years ago
Evan You
74f5adafcd
feat: detect dead links
4 years ago
Evan You
4a40e1faf4
fix(theme-default): avoid ad image distortion on mobile
4 years ago
Evan You
c0aa5a8fae
deps: bump vite + update alias usage
4 years ago
Kia King Ishii
a613df46e8
fix: `base` option not generating correct multi sidebar ( #231 ) ( #234 )
4 years ago
Kia King Ishii
6538c8e70a
fix: nav home title not having locale based link ( #195 ) ( #233 )
...
fix #195
4 years ago
Kia King Ishii
3b4584377c
style: fix some code styles
4 years ago
旧巷馆子 · 沈青川
5678dc3a25
fix: home action link not being reactive ( #195 ) ( #212 )
...
Co-authored-by: mariotang <mariotang@tencent.com>
4 years ago
hcg1023
2aa8ab26e2
fix: `@` alias for import code snippet being always `undefined` ( #204 )
...
Co-authored-by: Kia King Ishii <kia.king.08@gmail.com>
4 years ago
Eduardo San Martin Morote
7ceaf344d2
fix: ads display causing layout break in mobile view ( #230 )
4 years ago
Kia King Ishii
72e116c2db
style: adjust import order a bit
4 years ago
Christopher Shank
5b34c6a94a
feat: add vue options config (expose @vitejs/plugin-vue) ( #215 )
4 years ago
Kia King Ishii
b82d8f2ece
fix: utf-8 character not working on safari in dev mode ( #228 )
4 years ago
NAN
8a0db65a8a
fix: render document with standards mode in dev ( #207 )
4 years ago
Kia King Ishii
5deaf6a2cd
fix: sidebar 'auto' not working ( #178 ) ( #224 )
...
BREAKING CHANGE: If sidebat is `undefined`, it will be treated as `auto` where
previsouly it's treated as `false`. It was always treated as `auto`, but due to
this bug, the sidebar was hidden, therefore it looked like it was treated
as `false`.
4 years ago
Matias Capeletto
338e8453d8
fix: frontmatter description duplication ( #194 ) ( #170 )
...
Co-authored-by: Kia King Ishii <kia.king.08@gmail.com>
4 years ago
Evan You
2330023d99
fix: use brand color in algolia search box
4 years ago
Kia King Ishii
0b5b306f85
fix: `base` option not working on dev mode ( #223 )
4 years ago
Domantas
1026a20488
dx: replace . with / at the end of served url ( #210 )
4 years ago
Evan You
8e0b8d184a
chore: exclude docsearch from optimization
4 years ago
Evan You
8cfdd1912d
fix: update base option usage
4 years ago
Eduardo San Martin Morote
78b026cb7a
fix: avoid layout shift due to ads ( #176 )
4 years ago
Łukasz Romanowicz
51906043d3
fix: support symbolic links in building docs dist ( #184 ) ( #185 )
...
fix #184
4 years ago
Matias Capeletto
481c4513d7
feat: $lang and $localePath globals ( #166 ) ( #167 )
...
close #166
Co-authored-by: Kia King Ishii <kia.king.08@gmail.com>
4 years ago
Evan You
b4bdaf648d
refactor: vite ssr compat
4 years ago
Evan You
3e6e61bcea
fix: ignore non-html links in router and prefetch
4 years ago
Evan You
b9fc0cb78d
perf: generate preload directives for dynamicImport chunks too
4 years ago
Evan You
a0f463af8f
fix: aria label id
4 years ago
Evan You
ca631c7f51
feat: render content on home page
4 years ago
Evan You
a79e1e1916
refactor: move default theme to 'vitepress/theme'
...
Fixes the case when using a completely custom theme, importing anything
from vitepress causes the entire default theme to be imported too.
BREAKING CHANGE: the default theme is now exposed via 'vitepress/theme',
instead of a named export from 'vitepress'.
4 years ago