Rocky_Mountain_Vending/.pnpm-store/v10/files/48/e440c3d8883a48b4d4518f51b28546ca961aa0adeb70d67030daa3a4e77f91112eb90a7822facdd796847fb28283d3619baa474aac376bbd8d9a7a27f1658f
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

20 lines
No EOL
907 B
Text

import { AppBundlePathNormalizer, DevAppBundlePathNormalizer } from './app-bundle-path-normalizer';
import { AppFilenameNormalizer } from './app-filename-normalizer';
import { DevAppPageNormalizer } from './app-page-normalizer';
import { AppPathnameNormalizer, DevAppPathnameNormalizer } from './app-pathname-normalizer';
export class AppNormalizers {
constructor(distDir){
this.filename = new AppFilenameNormalizer(distDir);
this.pathname = new AppPathnameNormalizer();
this.bundlePath = new AppBundlePathNormalizer();
}
}
export class DevAppNormalizers {
constructor(appDir, extensions, isTurbopack){
this.page = new DevAppPageNormalizer(appDir, extensions, isTurbopack);
this.pathname = new DevAppPathnameNormalizer(this.page);
this.bundlePath = new DevAppBundlePathNormalizer(this.page, isTurbopack);
}
}
//# sourceMappingURL=index.js.map