19 lines
472 B
TypeScript
19 lines
472 B
TypeScript
|
|
import { defineConfig } from 'astro/config';
|
||
|
|
import discovery from '@astrojs/discovery';
|
||
|
|
|
||
|
|
// Minimal configuration - just provide your site URL
|
||
|
|
// Everything else uses sensible defaults
|
||
|
|
export default defineConfig({
|
||
|
|
site: 'https://example.com',
|
||
|
|
|
||
|
|
integrations: [
|
||
|
|
discovery(),
|
||
|
|
],
|
||
|
|
});
|
||
|
|
|
||
|
|
// This will generate:
|
||
|
|
// - /robots.txt with LLM bot support
|
||
|
|
// - /llms.txt with basic site info
|
||
|
|
// - /humans.txt with basic structure
|
||
|
|
// - /sitemap-index.xml with all your pages
|