Rocky_Mountain_Vending/.pnpm-store/v10/files/cb/2ad873dee2630d72f655182a2585903b5d3a6d101a26c59eeb9ff66e77a898952ff6f372a8ecf6742b6e50bba50ff8b730e17b0fa1974e13a87894bf90bec4
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
270 B
Text

/**
* **PostCSS Syntax Error**
*
* Loader wrapper for postcss syntax errors
*
* @class SyntaxError
* @extends Error
*
* @param {Object} err CssSyntaxError
*/
export default class PostCSSSyntaxError extends Error {
stack: any;
constructor(error: any);
}