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

32 lines
928 B
JavaScript

module.exports = {
base: '/learn-wgpu/',
title: 'Learn Wgpu',
theme: 'thindark',
plugins: [['vuepress-plugin-code-copy', true]],
themeConfig: {
displayAllHeaders: false,
lastUpdated: 'Last Updated',
sidebar: [
'/',
{
title: 'Beginner',
collapsable: false,
children: [
'/beginner/',
'/beginner/tutorial1-window',
'/beginner/tutorial2-swapchain',
'/beginner/tutorial3-pipeline/',
'/beginner/tutorial4-buffer/',
'/beginner/tutorial5-textures/',
],
},
{
title: 'Intermediate',
collapsable: false,
children: [
'/intermediate/windowless',
],
},
]
}
}