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

30 lines
814 B
JavaScript

module.exports = {
base: '/learn-wgpu/',
title: 'Learn Wgpu',
themeConfig: {
displayAllHeaders: false,
lastUpdated: 'Last Updated',
sidebar: [
'/',
{
title: 'Beginner',
path: '/beginner/',
collapsable: false,
children: [
'/beginner/',
'/beginner/tutorial1-window',
'/beginner/tutorial2-swapchain',
'/beginner/tutorial3-pipeline',
],
},
{
title: 'Intermediate',
path: '/intermediate/',
collapsable: false,
children: [
'/intermediate/',
],
},
]
}
}