- @astrojs/sitemap generates sitemap-index.xml at build time - robots.txt points crawlers to the sitemap - generators.ts extended with seoTitle and seoDescription per generator - All generator pages now use seoTitle/seoDescription for <title> and <meta description> Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
270 B
JavaScript
12 lines
270 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
import sitemap from '@astrojs/sitemap';
|
|
|
|
export default defineConfig({
|
|
site: 'https://randify.pro',
|
|
integrations: [sitemap()],
|
|
vite: {
|
|
plugins: [tailwindcss()],
|
|
},
|
|
});
|