Files
awesome-copilot/website/astro.config.mjs
Aaron Powell aa42998e29 chore: rename website-astro to website, update gitignore
- Rename website-astro/ to website/
- Add website/dist/ and website/.astro/ to gitignore
- Update generate-website-data.mjs output path
2026-01-28 16:42:32 +11:00

15 lines
329 B
JavaScript

import { defineConfig } from 'astro/config';
import sitemap from '@astrojs/sitemap';
// https://astro.build/config
export default defineConfig({
site: 'https://github.github.io',
base: '/awesome-copilot/',
output: 'static',
integrations: [sitemap()],
build: {
assets: 'assets',
},
trailingSlash: 'always',
});