1
0
Fork 0
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:
Tim Neutkens 2018-02-05 18:40:09 +01:00 committed by Arunoda Susiripala
parent ed122934af
commit fa03f0b9cc
2 changed files with 11 additions and 11 deletions

View file

@ -4,7 +4,6 @@ import { renderToString, renderToStaticMarkup } from 'react-dom/server'
import send from 'send'
import generateETag from 'etag'
import fresh from 'fresh'
import requireModule from './require'
import getConfig from './config'
import { Router } from '../lib/router'
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 documentPath = join(dir, dist, 'dist', 'bundles', 'pages', '_document')
let [Component, Document] = await Promise.all([
requireModule(pagePath),
requireModule(documentPath)
])
let Component
let Document
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
Document = Document.default || Document
const asPath = req.url

View file

@ -1,6 +0,0 @@
import resolve from './resolve'
export default async function requireModule (path) {
const f = await resolve(path)
return require(f)
}