Skip to content

Commit 32aa965

Browse files
authored
Merge pull request #1887 from CoderZonora/master
Fix incorrect comments
2 parents 628b628 + 5608053 commit 32aa965

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)