We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b485655 commit aa7b711Copy full SHA for aa7b711
1 file changed
packages/builder/lib/commandLine/keys.ts
@@ -28,7 +28,7 @@ async function generateVapidKeys(): Promise<void> {
28
console.log('Public Key:');
29
console.log(publicKey);
30
console.log('\nPrivate Key (JWK):');
31
- console.log(JSON.stringify(privateJWKWithAlg, null, 2));
+ console.log(JSON.stringify(privateJWKWithAlg));
32
console.log('\nStore these keys securely. Never expose your private key.');
33
} catch (error: unknown) {
34
console.error('Error generating VAPID keys:');
0 commit comments