Rocky_Mountain_Vending/.pnpm-store/v10/files/a9/3b432e5b75ff2e146cacfe4e1c38c720d9a16d25fe4291a6858854a4f5d8b1a7ca0caed08e4424aaa90cf7fbdfd3bf2d5445b65c8862b0b2a2ba0cd7c00e32
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

11 lines
334 B
Text

export function setFeature(context, feature, value) {
if (!context.__smithy_context) {
context.__smithy_context = {
features: {},
};
}
else if (!context.__smithy_context.features) {
context.__smithy_context.features = {};
}
context.__smithy_context.features[feature] = value;
}