mirror of
https://github.com/bmlong137/maven-tiles
synced 2025-05-12 20:54:42 +00:00
41 lines
987 B
JavaScript
41 lines
987 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import starlight from '@astrojs/starlight';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: 'https://repaint-io.github.io',
|
|
base: '/maven-tiles',
|
|
integrations: [
|
|
starlight({
|
|
title: 'Tiles - Mixins For Apache Maven',
|
|
customCss: [
|
|
'./src/styles/custom.css',
|
|
],
|
|
social: {
|
|
github: 'https://github.com/repaint-io/maven-tiles',
|
|
},
|
|
sidebar: [
|
|
{
|
|
label: 'Maven Tiles',
|
|
items: [
|
|
{ label: "About", link: '/introduction/about/'},
|
|
{ label: "Using", link: '/introduction/using/'},
|
|
{ label: "Writing", link: '/introduction/writing/'}
|
|
]
|
|
},
|
|
// {
|
|
// label: 'Guides',
|
|
// items: [
|
|
// // Each item here is one entry in the navigation menu.
|
|
// { label: 'Example Guide', link: '/guides/example/' }
|
|
// ],
|
|
// }
|
|
// {
|
|
// label: 'Reference',
|
|
// autogenerate: { directory: 'reference' },
|
|
// },
|
|
],
|
|
}),
|
|
],
|
|
});
|