Skip to content

Commit f875395

Browse files
committed
feat: add api/env
1 parent 0a27173 commit f875395

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

apps/docs/src/app/api/env/route.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export const GET = async () => {
2+
return new Response(JSON.stringify(process.env), {
3+
headers: {
4+
'Content-Type': 'application/json',
5+
},
6+
});
7+
};

0 commit comments

Comments
 (0)