dashersupply/src/pages/ads.txt.ts

12 lines
270 B
TypeScript

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',
},
});
};