Skip to content

Commit

Permalink
docs: reorder sidebar menu to push infrastructure down
Browse files Browse the repository at this point in the history
  • Loading branch information
lindyhopchris committed Apr 20, 2024
1 parent 3e6b7ba commit 9f6470f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,18 @@ export default defineConfig({
{text: 'Services', link: '/guide/domain/services'},
],
},
{
text: 'Application Layer',
collapsed: false,
items: [
{text: 'Commands', link: '/guide/application/commands'},
{text: 'Queries', link: '/guide/application/queries'},
{text: 'Integration Events', link: '/guide/application/events'},
],
},
{
text: 'Infrastructure Layer',
collapsed: true,
collapsed: false,
items: [
{text: 'Asynchronous Processing', link: '/guide/infrastructure/queues'},
{text: 'Domain Event Dispatching', link: '/guide/infrastructure/domain-event-dispatchers'},
Expand All @@ -57,15 +66,6 @@ export default defineConfig({
{text: 'Units of Work', link: '/guide/infrastructure/units-of-work'},
],
},
{
text: 'Application Layer',
collapsed: false,
items: [
{text: 'Commands', link: '/guide/application/commands'},
{text: 'Queries', link: '/guide/application/queries'},
{text: 'Integration Events', link: '/guide/application/events'},
],
},
{
text: 'Toolkit',
collapsed: true,
Expand Down

0 comments on commit 9f6470f

Please sign in to comment.