mirror of
https://github.com/github/awesome-copilot.git
synced 2026-02-20 10:25:13 +00:00
15 lines
313 B
JavaScript
15 lines
313 B
JavaScript
import sitemap from "@astrojs/sitemap";
|
|
import { defineConfig } from "astro/config";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: "https://github.github.io",
|
|
base: "/",
|
|
output: "static",
|
|
integrations: [sitemap()],
|
|
build: {
|
|
assets: "assets",
|
|
},
|
|
trailingSlash: "always",
|
|
});
|