Skip to content

Commit

Permalink
✨ Move Apple Intelligence page to top of Misc section
Browse files Browse the repository at this point in the history
  • Loading branch information
yannbertrand committed Jan 29, 2025
1 parent 343e6fc commit 6d0175e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/.vitepress/config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { defineConfig } from 'vitepress'
import { generateSidebar } from 'vitepress-sidebar'
import { defineConfig } from 'vitepress';
import { generateSidebar } from 'vitepress-sidebar';

export default defineConfig({
title: 'macOS defaults',
Expand Down Expand Up @@ -279,6 +279,7 @@ export default defineConfig({
'show-subject-field.md',

'miscellaneous',
'apple-intelligence.md',
'devmode.md',
'enable-spring-load-actions-on-all-items.md',
'userwantsplaybacknotifications.md',
Expand All @@ -288,15 +289,14 @@ export default defineConfig({
excludePattern: ['contributing.md'],
}),
editLink: {
pattern:
'https://github.com/yannbertrand/macos-defaults/edit/main/docs/:path',
pattern: 'https://github.com/yannbertrand/macos-defaults/edit/main/docs/:path',
},
},
lastUpdated: true,
sitemap: {
hostname: 'https://macos-defaults.com',
transformItems: (items) => {
return items.map((item) => ({ ...item, changefreq: 'weekly' }))
return items.map((item) => ({ ...item, changefreq: 'weekly' }));
},
},
})
});

0 comments on commit 6d0175e

Please sign in to comment.