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

54 lines
1.6 KiB
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',
2019-11-14 23:41:16 +00:00
plugins: {
'vuepress-plugin-code-copy': true,
'@vuepress/back-to-top': true,
'seo': {
},
},
2019-10-16 23:35:58 +00:00
themeConfig: {
2019-11-14 23:41:16 +00:00
author: {
name: 'Benjamin R Hansen',
twitter: 'https://twitter.com/sotrh760',
},
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-11-22 23:09:38 +00:00
'/beginner/tutorial6-uniforms/',
2019-12-31 00:04:38 +00:00
'/beginner/tutorial7-instancing/',
2020-01-14 19:02:41 +00:00
'/beginner/tutorial8-depth/',
2020-03-06 20:19:12 +00:00
'/beginner/tutorial9-models/',
2019-10-16 23:35:58 +00:00
],
},
{
title: 'Intermediate',
collapsable: false,
children: [
'/intermediate/tutorial10-lighting/',
2019-10-16 23:35:58 +00:00
],
},
2020-03-30 01:51:50 +00:00
{
title: 'Showcase',
collapsable: true,
children: [
'/showcase/',
'/showcase/windowless/',
'/showcase/gifs/',
]
},
'/news/'
2019-10-16 23:35:58 +00:00
]
}
}