惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Proofpoint News Feed
Martin Fowler
Martin Fowler
The GitHub Blog
The GitHub Blog
B
Blog RSS Feed
U
Unit 42
阮一峰的网络日志
阮一峰的网络日志
量子位
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
IT之家
IT之家
V
Visual Studio Blog
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
D
Docker
V
V2EX

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Fix the ads.txt 500 Error on Next.js App Router wi...
bi kai · 2026-05-15 · via DEV Community

bi kai

If you've ever tried to apply for Google AdSense with a Next.js App Router site deployed on Vercel, you may have run into a frustrating issue: visiting your-domain.com/ads.txt returns a 500 Internal Server Error, even though the file exists in your public/ directory and works fine in local development.

This post explains why it happens and shares the cleanest fix I found while preparing my own site for AdSense submission.

The Problem

The conventional way to serve ads.txt is to drop it into the public/ directory.

In a Pages Router project, this works without issue. But with the App Router on Vercel, you might see one of these symptoms:

  • your-domain.com/ads.txt returns 500 in production
  • The file works fine on localhost:3000 during next dev
  • AdSense crawler reports the file as unreachable
  • DevTools shows a non-zero response but empty content, or a hard server error

This is particularly annoying because AdSense requires a properly served ads.txt for site authorization, and the failure mode is silent — you only notice when AdSense flags your site weeks later.

Why It Happens

The root cause is a routing precedence quirk between App Router's matching system and Vercel's static file handling.

In App Router, file-based routes are evaluated before static assets in public/ in certain edge cases. When ads.txt is requested:

  1. App Router tries to match /ads.txt against its route tree
  2. Because .txt isn't a recognized App Router file extension, the matcher enters an undefined state
  3. On Vercel's edge runtime, this manifests as a 500 instead of falling through to the static file
  4. Locally, the dev server's looser matching often masks the issue

The behavior is inconsistent enough that it slips past local testing and only shows up after deployment.

The Fix: Route Handler

Instead of relying on public/, define ads.txt as an App Router Route Handler at app/ads.txt/route.ts with this content:

export async function GET() {
  const publisherId = process.env.ADSENSE_PUBLISHER_ID ?? '';

  // ads.txt requires the "pub-" form without the "ca-" prefix
  const cleanId = publisherId.replace(/^ca-/, '');

  const content = cleanId
    ? `google.com, ${cleanId}, DIRECT, f08c47fec0942fa0`
    : '';

  return new Response(content, {
    headers: {
      'Content-Type': 'text/plain',
      'Cache-Control': 'public, max-age=0, must-revalidate',
    },
  });
}

Enter fullscreen mode Exit fullscreen mode

A few details worth noting:

  • The handler reads your publisher ID from an environment variable, so the same code works across staging and production.
  • ca-pub-XXXXXXXXXXXXXXXX is the format AdSense gives you, but ads.txt wants pub-XXXXXXXXXXXXXXXX — the regex strips the ca- prefix automatically.
  • Cache-Control: must-revalidate ensures AdSense always sees the latest content if you ever rotate IDs.
  • When ADSENSE_PUBLISHER_ID is not set, the route returns an empty 200 response instead of crashing — useful during AdSense pre-approval when you don't have a publisher ID yet.

Setting the Environment Variable on Vercel

Once your AdSense application is approved and you have your publisher ID:

  1. Go to your Vercel project, then Settings, then Environment Variables
  2. Add ADSENSE_PUBLISHER_ID with value ca-pub-XXXXXXXXXXXXXXXX
  3. Apply to Production (and optionally Preview/Development)
  4. Trigger a redeploy — environment variables don't apply retroactively to existing deployments

Verifying It Works

After deployment, verify the response headers with curl:

curl -I https://your-domain.com/ads.txt

Enter fullscreen mode Exit fullscreen mode

You should see HTTP/2 200 and content-type: text/plain.

Then check the body:

curl https://your-domain.com/ads.txt

Enter fullscreen mode Exit fullscreen mode

The expected output is google.com, pub-XXXXXXXXXXXXXXXX, DIRECT, f08c47fec0942fa0.

For additional validation, paste your domain into the adstxt.guru validator — it parses the file the same way AdSense does and catches formatting issues.

Common Mistakes to Avoid

A few things I tripped over during my own setup.

Don't leave the ca- prefix in the output. The format google.com, ca-pub-XXX, DIRECT, ... is invalid. AdSense's verification will fail silently. Always strip it.

Don't forget to redeploy after changing the environment variable. Vercel does not apply env var changes to existing deployments — only new builds pick them up.

Don't test only on localhost. This entire bug is invisible in next dev. Always verify the deployed URL.

Don't add multiple files. If you have both public/ads.txt and app/ads.txt/route.ts, the behavior is undefined. Pick one — the Route Handler is more reliable.

Closing Notes

I ran into this exact issue while preparing my own side project for AdSense — a free browser-based harmonium for Indian classical music practice at playharmonium.com. The site uses Next.js App Router on Vercel, and the ads.txt 500 error was the last thing blocking the application. The Route Handler approach above is what I ended up shipping, and the file has been served reliably since.

If you're going through AdSense setup yourself and hit the same wall, I hope this saves you a few hours of head-scratching. Drop a comment if you've found other quirks worth documenting.