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
570 B
Text
12 lines
570 B
Text
import type { NextConfigComplete } from '../server/config-shared';
|
|
import type { PageStaticInfo } from './analysis/get-page-static-info';
|
|
import type { PageExtensions } from './page-extensions-type';
|
|
export declare function getStaticInfoIncludingLayouts({ isInsideAppDir, pageExtensions, pageFilePath, appDir, config: nextConfig, isDev, page, }: {
|
|
isInsideAppDir: boolean;
|
|
pageExtensions: PageExtensions;
|
|
pageFilePath: string;
|
|
appDir: string | undefined;
|
|
config: NextConfigComplete;
|
|
isDev: boolean;
|
|
page: string;
|
|
}): Promise<PageStaticInfo>;
|