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>
35 lines
No EOL
1.6 KiB
Text
35 lines
No EOL
1.6 KiB
Text
if (process.env.NEXT_RUNTIME === 'edge') {
|
|
module.exports = require('next/dist/server/route-modules/app-page/module.js');
|
|
} else {
|
|
if (process.env.__NEXT_EXPERIMENTAL_REACT) {
|
|
if (process.env.NODE_ENV === 'development') {
|
|
if (process.env.TURBOPACK) {
|
|
module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.dev.js');
|
|
} else {
|
|
module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.dev.js');
|
|
}
|
|
} else {
|
|
if (process.env.TURBOPACK) {
|
|
module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js');
|
|
} else {
|
|
module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.prod.js');
|
|
}
|
|
}
|
|
} else {
|
|
if (process.env.NODE_ENV === 'development') {
|
|
if (process.env.TURBOPACK) {
|
|
module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.dev.js');
|
|
} else {
|
|
module.exports = require('next/dist/compiled/next-server/app-page.runtime.dev.js');
|
|
}
|
|
} else {
|
|
if (process.env.TURBOPACK) {
|
|
module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.prod.js');
|
|
} else {
|
|
module.exports = require('next/dist/compiled/next-server/app-page.runtime.prod.js');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//# sourceMappingURL=module.compiled.js.map |