import type { APIRoute } from 'astro'; import { config } from "../config"; const adsTxt = config.GoogleAdsenseAdsTxt; export const GET: APIRoute = () => { return new Response(adsTxt, { headers: { 'Content-Type': 'text/plain; charset=utf-8', }, }); };