scratch-box-js
Version:
Create scratch card in browser.
32 lines (31 loc) • 863 B
JavaScript
module.exports = {
theme: '',
title: ' ScratchCard-js',
plugins: ['@vuepress/active-header-links'],
head: [
{ text: 'Home', link: '/' },
],
port: 8088,
base: '/ScratchCard/',
configureWebpack: {},
themeConfig: {
search: false,
logo: '',
nav: [
{ text: 'Home', link: '/' },
{
text: 'Brushes',
ariaLabel: 'Brushes menu',
items: [
{ text: 'Line', link: '/brushes/line/' },
{ text: 'Spray', link: '/brushes/spray/' },
{ text: 'Circle', link: '/brushes/circle/' },
{ text: 'Brush', link: '/brushes/brush/' },
{ text: 'Html background', link: '/brushes/html-bg/' },
]
},
{ text: 'github', link: 'https://github.com/Masth0/ScratchCard' },
{ text: 'npm', link: 'https://www.npmjs.com/package/scratchcard-js' },
],
}
};