diff --git a/client/public/ads.txt b/client/public/ads.txt new file mode 100644 index 0000000..8c75677 --- /dev/null +++ b/client/public/ads.txt @@ -0,0 +1 @@ +smartyads.com,21044,DIRECT,f2dbe0dfe26c25d \ No newline at end of file diff --git a/server/routes.ts b/server/routes.ts index 5fe752d..514a0d1 100644 --- a/server/routes.ts +++ b/server/routes.ts @@ -456,6 +456,12 @@ export async function registerRoutes(app: Express): Promise { + // Serve ads.txt file specifically + app.get("/ads.txt", (req, res) => { + res.type("text/plain"); + res.sendFile(path.join(__dirname, "../client/public/ads.txt")); + }); + const httpServer = createServer(app); return httpServer; }