Rocky_Mountain_Vending/.pnpm-store/v10/files/61/fb7d1d001c8341cea80aa7fa5aac2941f1b092e4896f3096756ab8613b3fb39fa4a4d204b2d14277342570513dfd64329523a2350cd4da778385c65fafc410
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

48 lines
706 B
Text

/**
* @license
* Copyright 2017 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
export * from './index.js';
import fs from 'node:fs';
import path from 'node:path';
import {environment} from './environment.js';
import * as Puppeteer from './index.js';
// Set up Node-specific environment dependencies.
environment.value = {
fs,
path,
ScreenRecorder: Puppeteer.ScreenRecorder,
};
/**
* @public
*/
const puppeteer = new Puppeteer.PuppeteerNode({
isPuppeteerCore: true,
});
export const {
/**
* @public
*/
connect,
/**
* @public
*/
defaultArgs,
/**
* @public
*/
executablePath,
/**
* @public
*/
launch,
} = puppeteer;
export default puppeteer;