You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
806 B
41 lines
806 B
module.exports = {
|
|
title: 'Vue Qrcode Reader',
|
|
description: 'A set of Vue.js components for detecting and decoding QR codes.',
|
|
|
|
base: '/vue-qrcode-reader/',
|
|
|
|
extraWatchFiles: [
|
|
'../src/'
|
|
],
|
|
|
|
themeConfig: {
|
|
repo: 'gruhn/vue-qrcode-reader',
|
|
|
|
sidebar: {
|
|
'/demos/': [
|
|
'Simple',
|
|
'DecodeAll',
|
|
'CustomTracking',
|
|
'LoadingIndicator',
|
|
'ScanSameQrcodeMoreThanOnce',
|
|
'Validate',
|
|
'SwitchCamera',
|
|
'Fullscreen',
|
|
'Torch',
|
|
'DragDrop',
|
|
'Upload'
|
|
],
|
|
|
|
'/api/': [
|
|
'QrcodeStream',
|
|
'QrcodeDropZone',
|
|
'QrcodeCapture'
|
|
],
|
|
},
|
|
|
|
nav: [
|
|
{ text: 'Live Demos', link: '/demos/CustomTracking' },
|
|
{ text: 'API Reference', link: '/api/QrcodeStream' }
|
|
]
|
|
}
|
|
}
|
|
|