Removed await because of top-level code

This commit is contained in:
Thomas Reichling 2019-03-24 11:36:15 +01:00 committed by GitHub
parent 45f1edd4cd
commit be72f15c6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,7 +104,7 @@ let config = require('./nuxt.config.js')
config.dev = (process.env.NODE_ENV !== 'production')
let nuxt = new Nuxt(config)
await nuxt.ready()
nuxt.ready()
// Start build process (only in development)
if (config.dev) {