chore: Remove title, description, and viewport meta tags from app.html.

This commit is contained in:
Ben
2026-03-11 11:26:22 -07:00
parent d23e910aa7
commit 63bafc2feb
3 changed files with 15850 additions and 6 deletions
@@ -3,8 +3,7 @@ import { calculators, categories } from '$lib/data/calculators';
export const GET: RequestHandler = async () => {
const calculatorUrls = calculators.map(
(calc) => `
<url>
(calc) => ` <url>
<loc>https://howdoyouconvert.com/${calc.slug}</loc>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
@@ -12,8 +11,7 @@ export const GET: RequestHandler = async () => {
);
const categoryUrls = Object.keys(categories).map(
(category) => `
<url>
(category) => ` <url>
<loc>https://howdoyouconvert.com/category/${category}</loc>
<changefreq>weekly</changefreq>
<priority>0.9</priority>
@@ -27,8 +25,8 @@ export const GET: RequestHandler = async () => {
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>
${categoryUrls.join('')}
${calculatorUrls.join('')}
${categoryUrls.join('\n')}
${calculatorUrls.join('\n')}
</urlset>`;
return new Response(sitemap, {