Skip to content

Commit 5608053

Browse files
author
rj@pop
committed
Fix incorrect comments
1 parent f3ce877 commit 5608053

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/network-services-pentesting/pentesting-web

src/network-services-pentesting/pentesting-web/nextjs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1015,8 +1015,8 @@ Manage sensitive information like API keys and database credentials securely wit
10151015

10161016
module.exports = {
10171017
env: {
1018-
SECRET_API_KEY: process.env.SECRET_API_KEY, // Exposed to the client
1019-
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL, // Correctly prefixed for client
1018+
SECRET_API_KEY: process.env.SECRET_API_KEY, // Not exposed to the client
1019+
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL, // Correctly prefixed for exposure to client
10201020
},
10211021
}
10221022
```

0 commit comments

Comments
 (0)