mirror of
https://github.com/skidoodle/albert.lol.git
synced 2025-02-15 06:09:15 +01:00
6 lines
No EOL
238 B
TypeScript
6 lines
No EOL
238 B
TypeScript
import { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
export default async function ip(req: NextApiRequest, res: NextApiResponse){
|
|
const ip = (req.headers['x-forwarded-for' || 'x-vercel-forwarded-for']);
|
|
res.json({ ip: ip });
|
|
} |