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
This commit is contained in:
Aaron Powell
2026-01-28 16:42:32 +11:00
parent 4b3bd3d0ad
commit aa42998e29
69 changed files with 17 additions and 16941 deletions

14
website/astro.config.mjs Normal file
View File

@@ -0,0 +1,14 @@
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',
});