feat: add ads.txt route handler for Google AdSense
Deploy Startover / deploy (push) Has been cancelled

This commit is contained in:
admin
2026-04-02 09:31:16 +00:00
parent 35eacedfb6
commit 2b6de14064
+8
View File
@@ -0,0 +1,8 @@
export async function GET() {
const content = "google.com, pub-9505789508299290, DIRECT, f08c47fec0942fa0";
return new Response(content, {
headers: {
"Content-Type": "text/plain",
},
});
}