- Create robots.txt to allow all user agents and specify sitemap location - Add site.webmanifest for PWA support with app details - Initialize sitemap.xml with the homepage URL and metadata - Set up svelte.config.js for SvelteKit with static adapter and prerendering - Configure TypeScript with tsconfig.json for strict type checking and module resolution - Establish Vite configuration in vite.config.ts for SvelteKit integration
9 lines
236 B
XML
9 lines
236 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="https://www.sitemaps.org/schemas/sitemap/0.9">
|
|
<url>
|
|
<loc>https://squiggleverse.com/</loc>
|
|
<changefreq>monthly</changefreq>
|
|
<priority>1.0</priority>
|
|
</url>
|
|
</urlset>
|