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>
12 lines
321 B
Text
12 lines
321 B
Text
// `@types/node` should be included
|
|
Buffer.from("test");
|
|
|
|
// `@types/jest` should be included
|
|
test("test");
|
|
|
|
// @ts-expect-error `@cloudflare/workers-types` should NOT be included
|
|
const _handler: ExportedHandler = {};
|
|
// @ts-expect-error `@cloudflare/workers-types` should NOT be included
|
|
new HTMLRewriter();
|
|
|
|
export {};
|