Co-authored-by: Agusti Fernandez Pardo <git@agusti.me> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
11 lines
311 B
TypeScript
11 lines
311 B
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
import * as pjson from "package.json";
|
|
|
|
type Response = {
|
|
version: string;
|
|
};
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse<Response>): Promise<void> {
|
|
return res.status(200).json({ version: pjson.version });
|
|
}
|