Rocky_Mountain_Vending/.pnpm-store/v10/files/6c/dc1dbc66034b576ba789ca312cf6193123a2bd8a5ddb5ad20e0fb1d22ba565b69e07368747e2583d8985489c4b89dfd05fc1e3ba71acfb212f9acd09ede84e
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

12 lines
506 B
Text

import type webpack from 'webpack';
import type { PossibleImageFileNameConvention } from './metadata/types';
import type { PageExtensions } from '../../page-extensions-type';
interface Options {
segment: string;
type: PossibleImageFileNameConvention;
pageExtensions: PageExtensions;
basePath: string;
}
declare function nextMetadataImageLoader(this: webpack.LoaderContext<Options>, content: Buffer): Promise<string>;
export declare const raw = true;
export default nextMetadataImageLoader;