mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-24 21:21:25 +03:00
16 lines
311 B
JavaScript
16 lines
311 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
import starlight from '@astrojs/starlight';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [
|
|
starlight({
|
|
title: 'Kekkai',
|
|
social: {
|
|
github: 'https://github.com/redume/kekkai',
|
|
},
|
|
sidebar: [],
|
|
}),
|
|
],
|
|
});
|