()
| 1 | import Image from "next/image"; |
| 2 | |
| 3 | export default function Home() { |
| 4 | // console.log("The id is: ", process.env.ID) |
| 5 | // console.log("The secret is: ", process.env.SECRET) |
| 6 | return ( |
| 7 | <div> |
| 8 | Hey this is home. The id is {process.env.NEXT_PUBLIC_ID} and secret is {process.env.SECRET} and name is {process.env.NAME} |
| 9 | </div> |
| 10 | ); |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected