Rocky_Mountain_Vending/.pnpm-store/v10/files/31/644ca2b3460cda033f92ab6d70e93dfa5bd10cfaf38e14486a962d06f112bf90010b8b527d580bb11b6b6729c9eb95e5ca1f0b2f56f79e85964ee4e1283444
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

14 lines
206 B
Text

module.exports = {
prefix(prop) {
let match = prop.match(/^(-\w+-)/)
if (match) {
return match[0]
}
return ''
},
unprefixed(prop) {
return prop.replace(/^-\w+-/, '')
}
}