mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
Require files directly instead of resolving them (#3683)
This commit is contained in:
parent
ed122934af
commit
fa03f0b9cc
|
@ -4,7 +4,6 @@ import { renderToString, renderToStaticMarkup } from 'react-dom/server'
|
||||||
import send from 'send'
|
import send from 'send'
|
||||||
import generateETag from 'etag'
|
import generateETag from 'etag'
|
||||||
import fresh from 'fresh'
|
import fresh from 'fresh'
|
||||||
import requireModule from './require'
|
|
||||||
import getConfig from './config'
|
import getConfig from './config'
|
||||||
import { Router } from '../lib/router'
|
import { Router } from '../lib/router'
|
||||||
import { loadGetInitialProps, isResSent } from '../lib/utils'
|
import { loadGetInitialProps, isResSent } from '../lib/utils'
|
||||||
|
@ -55,10 +54,17 @@ async function doRender (req, res, pathname, query, {
|
||||||
const pagePath = join(dir, dist, 'dist', 'bundles', 'pages', page)
|
const pagePath = join(dir, dist, 'dist', 'bundles', 'pages', page)
|
||||||
const documentPath = join(dir, dist, 'dist', 'bundles', 'pages', '_document')
|
const documentPath = join(dir, dist, 'dist', 'bundles', 'pages', '_document')
|
||||||
|
|
||||||
let [Component, Document] = await Promise.all([
|
let Component
|
||||||
requireModule(pagePath),
|
let Document
|
||||||
requireModule(documentPath)
|
try {
|
||||||
])
|
Component = require(pagePath)
|
||||||
|
Document = require(documentPath)
|
||||||
|
} catch (err) {
|
||||||
|
const err = new Error(`Cannot find module`)
|
||||||
|
err.code = 'ENOENT'
|
||||||
|
throw err
|
||||||
|
}
|
||||||
|
|
||||||
Component = Component.default || Component
|
Component = Component.default || Component
|
||||||
Document = Document.default || Document
|
Document = Document.default || Document
|
||||||
const asPath = req.url
|
const asPath = req.url
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
import resolve from './resolve'
|
|
||||||
|
|
||||||
export default async function requireModule (path) {
|
|
||||||
const f = await resolve(path)
|
|
||||||
return require(f)
|
|
||||||
}
|
|
Loading…
Reference in a new issue