mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-24 06:35:10 +00:00
No need to check on render anymore
This commit is contained in:
parent
84e5eabd99
commit
2926b08344
@ -14,11 +14,6 @@ setAnsiColors(ansiHTML)
|
|||||||
export async function render (req, res) {
|
export async function render (req, res) {
|
||||||
// Wait for nuxt.js to be ready
|
// Wait for nuxt.js to be ready
|
||||||
await this.ready()
|
await this.ready()
|
||||||
// Check if project is built for production
|
|
||||||
if (!this.renderer && !this.dev) {
|
|
||||||
console.error('> No build files found, please run `nuxt build` before launching `nuxt start`') // eslint-disable-line no-console
|
|
||||||
process.exit(1)
|
|
||||||
}
|
|
||||||
/* istanbul ignore if */
|
/* istanbul ignore if */
|
||||||
if (!this.renderer || !this.appTemplate) {
|
if (!this.renderer || !this.appTemplate) {
|
||||||
return new Promise((resolve) => {
|
return new Promise((resolve) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user