fct/docs/astro.config.mjs
2024-07-07 00:32:06 -04:00

14 lines
347 B
JavaScript

import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: "File Converter Tool",
social: {
github: "https://github.com/rzmk/fct",
},
}),
],
});