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>
20 lines
No EOL
907 B
Text
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 |