Rocky_Mountain_Vending/.pnpm-store/v10/files/89/e003c9094513467cc53c049ef13cfcea244a9ef98f48b384d76675b653b600000c687cb7547d9e7a24609c8ef9da91218d04766ebab57bd4d98e68aea7d930
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

26 lines
766 B
Text

/**
* @license
* Copyright 2018 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import fs from 'fs';
import {flowReportAssets} from './flow-report-assets.js';
import {getModuleDirectory} from '../../shared/esm-utils.js';
const moduleDir = getModuleDirectory(import.meta);
const REPORT_TEMPLATE = fs.readFileSync(moduleDir + '/../assets/standalone-template.html',
'utf8');
const REPORT_JAVASCRIPT = fs.readFileSync(moduleDir + '/../../dist/report/standalone.js', 'utf8');
export const reportAssets = {
REPORT_TEMPLATE,
REPORT_JAVASCRIPT,
// Flow report assets are not needed for every bundle.
// Replacing/ignoring flow-report-assets.js (e.g. `rollupPlugins.shim`) will
// remove the flow assets from the bundle.
...flowReportAssets,
};