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>
22 lines
754 B
Text
22 lines
754 B
Text
import { webpack } from 'next/dist/compiled/webpack/webpack';
|
|
export type PagesManifest = {
|
|
[page: string]: string;
|
|
};
|
|
export declare let edgeServerPages: {};
|
|
export declare let nodeServerPages: {};
|
|
export declare let edgeServerAppPaths: {};
|
|
export declare let nodeServerAppPaths: {};
|
|
export default class PagesManifestPlugin implements webpack.WebpackPluginInstance {
|
|
dev: boolean;
|
|
distDir?: string;
|
|
isEdgeRuntime: boolean;
|
|
appDirEnabled: boolean;
|
|
constructor({ dev, distDir, isEdgeRuntime, appDirEnabled, }: {
|
|
dev: boolean;
|
|
distDir?: string;
|
|
isEdgeRuntime: boolean;
|
|
appDirEnabled: boolean;
|
|
});
|
|
createAssets(compilation: any): Promise<void>;
|
|
apply(compiler: webpack.Compiler): void;
|
|
}
|