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>
11 lines
480 B
Text
11 lines
480 B
Text
import { Normalizers } from '../../normalizers';
|
|
import type { Normalizer } from '../../normalizer';
|
|
import { PrefixingNormalizer } from '../../prefixing-normalizer';
|
|
export declare class AppBundlePathNormalizer extends PrefixingNormalizer {
|
|
constructor();
|
|
normalize(page: string): string;
|
|
}
|
|
export declare class DevAppBundlePathNormalizer extends Normalizers {
|
|
constructor(pageNormalizer: Normalizer, isTurbopack: boolean);
|
|
normalize(filename: string): string;
|
|
}
|