Rocky_Mountain_Vending/.pnpm-store/v10/files/88/e2c17e9ac3e22a75f0ece2222cef912ff3216a99cc28d3e1f4292388650bb09bb8dd419f48e686880bced2885896342f9fe0a7c3508cf6d669c30dabd550d7
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

32 lines
No EOL
944 B
Text

import App from '../../../../pages/_app';
import Document from '../../../../pages/_document';
import { RouteKind } from '../../../route-kind';
import * as moduleError from '../../../../pages/_error';
import PagesRouteModule from '../module';
import { getHandler } from '../pages-handler';
export const routeModule = new PagesRouteModule({
// TODO: add descriptor for internal error page
definition: {
kind: RouteKind.PAGES,
page: '/_error',
pathname: '/_error',
filename: '',
bundlePath: ''
},
distDir: process.env.__NEXT_RELATIVE_DIST_DIR || '',
relativeProjectDir: process.env.__NEXT_RELATIVE_PROJECT_DIR || '',
components: {
App,
Document
},
userland: moduleError
});
export const handler = getHandler({
srcPage: '/_error',
routeModule,
userland: moduleError,
config: {},
isFallbackError: true
});
//# sourceMappingURL=_error.js.map