9 lines
210 B
TypeScript
9 lines
210 B
TypeScript
import process from "node:process"
|
|
|
|
export default defineEventHandler(async () => {
|
|
return {
|
|
enable: true,
|
|
url: `https://github.com/login/oauth/authorize?client_id=${process.env.G_CLIENT_ID}`,
|
|
}
|
|
})
|