Rocky_Mountain_Vending/.pnpm-store/v10/files/fd/9613cc00539528deb52cf5e97dd5143510fe5afa6532dcdd3ca624d14307134ca9011199506950c9ebb22fe3316b4fa7f7b2f867e9d76be3ff987c40494374
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

41 lines
No EOL
723 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;
//# sourceMappingURL=puppeteer-core.js.map