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>
12 lines
506 B
Text
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;
|