Rocky_Mountain_Vending/.pnpm-store/v10/files/77/ce26f33f5686a739a4800d60cca06eb3f2df9b0358068ea1906e381eb0abbc70f3b6c39dbc0cfdf11b082db7bacca88db0129c43df2c2d2553d6fb710352ea
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

11 lines
398 B
Text

import type webpack from 'webpack';
export type MetadataRouteLoaderOptions = {
filePath: string;
isDynamicRouteExtension: '1' | '0';
};
export declare function getFilenameAndExtension(resourcePath: string): {
name: string;
ext: string;
};
declare const nextMetadataRouterLoader: webpack.LoaderDefinitionFunction<MetadataRouteLoaderOptions>;
export default nextMetadataRouterLoader;