You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
learn-wgpu/docs/.vuepress/config.js

26 lines
673 B
JavaScript

module.exports = {
themeConfig: {
displayAllHeaders: true,
sidebar: [
'/',
{
title: 'Beginner',
path: '/beginner/',
collapsable: false,
children: [
'/beginner/',
'/beginner/tutorial1-window',
'/beginner/tutorial2-swapchain',
],
},
{
title: 'Intermediate',
path: '/intermediate/',
collapsable: false,
children: [
'/intermediate/',
],
},
]
}
}