learn-wgpu/docs/.vuepress/config.js

32 lines
917 B
JavaScript
Raw Normal View History

2019-10-16 23:35:58 +00:00
module.exports = {
2019-10-19 21:17:15 +00:00
base: '/learn-wgpu/',
2019-10-22 00:12:28 +00:00
title: 'Learn Wgpu',
2019-10-22 00:29:38 +00:00
theme: 'thindark',
plugins: [['vuepress-plugin-code-copy', true]],
2019-10-16 23:35:58 +00:00
themeConfig: {
2019-10-19 21:17:15 +00:00
displayAllHeaders: false,
lastUpdated: 'Last Updated',
2019-10-16 23:35:58 +00:00
sidebar: [
'/',
{
title: 'Beginner',
collapsable: false,
children: [
'/beginner/tutorial1-window',
'/beginner/tutorial2-swapchain/',
2019-10-25 07:57:14 +00:00
'/beginner/tutorial3-pipeline/',
'/beginner/tutorial4-buffer/',
2019-11-05 08:02:41 +00:00
'/beginner/tutorial5-textures/',
2019-10-16 23:35:58 +00:00
],
},
{
title: 'Intermediate',
collapsable: false,
children: [
'/intermediate/windowless/',
2019-10-16 23:35:58 +00:00
],
},
'/news/'
2019-10-16 23:35:58 +00:00
]
}
}