Home

Issue: 2011

Uncaught SyntaxError: Unexpected string

[issue link]

I’m receiving the error “Uncaught SyntaxError: Unexpected string” when running nuxt programmatically in development mode (letting it build first).

This error points to this:

if(!module.hot.data){hotAPI.createRecord("data-v-6eb2fbd4",Component.options)}else{hotAPI.reload("data-v-6eb2fbd4",Component.options)' + '}
const { Nuxt, Builder } = require('nuxt')

const app = require('express')()
const isProd = (process.env.NODE_ENV === 'production')
const port = process.env.PORT || 3000

// We instantiate nuxt.js with the options
const config = require('./nuxt.config.js')
config.dev = !isProd
const nuxt = new Nuxt(config)

// Render every route with Nuxt.js
app.use(nuxt.render)

// Build only in dev mode with hot-reloading
if (config.dev) {
  new Builder(nuxt).build()
  .then(listen)
  .catch((error) => {
    console.error(error)
    process.exit(1)
  })
}
else {
  listen()
}

function listen() {
  // Listen the server
  app.listen(port, '0.0.0.0')
  console.log('Server listening on `localhost:' + port + '`.')
}
This question is available on Nuxt.js community (#c1785)