Rocky_Mountain_Vending/.pnpm-store/v10/files/ca/5fb51c59c4b0e4b9bc602f4bb89e2a47ea15ebc70e149f0a9cbdd150e408a04cbb82416449c21b004e3de4550c412786db3f5f058daa2cccbe7a8c597c44e0
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

8 lines
333 B
Text

import { strictEqual } from 'assert'
// https://github.com/nodejs/import-in-the-middle/issues/139
import * as libServer from 'vue/server-renderer'
// https://github.com/nodejs/import-in-the-middle/issues/144
import * as lib from 'vue'
strictEqual(typeof libServer.renderToString, 'function')
strictEqual(typeof lib.ref, 'function')