mirror of
https://github.com/github/awesome-copilot.git
synced 2026-02-20 10:25:13 +00:00
- Rename website-astro/ to website/ - Add website/dist/ and website/.astro/ to gitignore - Update generate-website-data.mjs output path
15 lines
329 B
JavaScript
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',
|
|
});
|