14 lines
347 B
JavaScript
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",
|
|
},
|
|
}),
|
|
],
|
|
});
|