feat: add contact form with SMS OTP verification

This commit is contained in:
badblocks 2025-07-17 19:34:29 -07:00
parent 91b162fb44
commit 3874443c34
No known key found for this signature in database
14 changed files with 729 additions and 54 deletions

View file

@ -19,4 +19,14 @@ export default defineNuxtConfig({
"@nuxt/test-utils",
"@nuxt/ui",
],
});
runtimeConfig: {
androidSmsGatewayUrl: process.env.NUXT_ANDROID_SMS_GATEWAY_URL,
androidSmsGatewayLogin: process.env.NUXT_ANDROID_SMS_GATEWAY_LOGIN,
androidSmsGatewayPassword: process.env.NUXT_ANDROID_SMS_GATEWAY_PASSWORD,
myPhoneNumber: process.env.NUXT_MY_PHONE_NUMBER,
superSecretSalt: process.env.NUXT_SUPER_SECRET_SALT,
// Keys within public, will be also exposed to the client-side
public: {},
},
});