Skip to content

Commit cf4aad2

Browse files
authored
fix: sorted navigation entries (#190)
Co-authored-by: Tino Koch <>
1 parent 507b517 commit cf4aad2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/.vitepress/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export default defineConfig({
7272
{ text: 'Shock Wave', link: '/guide/pmndrs/shock-wave' },
7373
{ text: 'Tilt Shift', link: '/guide/pmndrs/tilt-shift' },
7474
{ text: 'Tone Mapping', link: '/guide/pmndrs/tone-mapping' },
75-
],
75+
].sort((a, b) => a.text.localeCompare(b.text)),
7676
},
7777
{
7878
text: 'Three',
@@ -83,7 +83,7 @@ export default defineConfig({
8383
{ text: 'Pixelation', link: '/guide/three/pixelation' },
8484
{ text: 'SMAA', link: '/guide/three/smaa' },
8585
{ text: 'Unreal Bloom', link: '/guide/three/unreal-bloom' },
86-
],
86+
].sort((a, b) => a.text.localeCompare(b.text)),
8787
},
8888
],
8989

0 commit comments

Comments
 (0)