mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-05 13:14:48 +01:00
25 lines
367 B
TypeScript
25 lines
367 B
TypeScript
import { configuration } from '@codedoc/core'
|
|
|
|
export const config = configuration({
|
|
src: {
|
|
base: 'docs',
|
|
},
|
|
dest: {
|
|
html: './build',
|
|
assets: './build',
|
|
bundle: './_',
|
|
styles: './_',
|
|
},
|
|
page: {
|
|
title: {
|
|
base: 'Autorestic',
|
|
},
|
|
},
|
|
misc: {
|
|
github: {
|
|
user: 'cupcakearmy',
|
|
repo: 'autorestic',
|
|
},
|
|
},
|
|
})
|