next
Version:
The React Framework
19 lines (18 loc) • 761 B
JavaScript
if (process.env.NEXT_RUNTIME === 'edge') {
module.exports = require('next/dist/server/route-modules/pages/module.js');
} else {
if (process.env.NODE_ENV === 'development') {
if (process.env.TURBOPACK) {
module.exports = require('next/dist/compiled/next-server/pages-turbo.runtime.dev.js');
} else {
module.exports = require('next/dist/compiled/next-server/pages.runtime.dev.js');
}
} else {
if (process.env.TURBOPACK) {
module.exports = require('next/dist/compiled/next-server/pages-turbo.runtime.prod.js');
} else {
module.exports = require('next/dist/compiled/next-server/pages.runtime.prod.js');
}
}
}
//# sourceMappingURL=module.compiled.js.map