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>
32 lines
No EOL
944 B
Text
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 |