New Nuxt app not running on the XDN, works locally

Creating a new Nuxt app:

The app runs fine locally, but when deployed on the XDN it throws:

Nuxt Internal Server Error

This shows in the server log output:

 ERROR  inject('content', value) has no value provided
  at inject (.nuxt/index.js:139:0)
  at plugin_server (.nuxt/content/plugin.server.js:9:0)
  at createApp (.nuxt/index.js:189:0)
  at async module.exports.__webpack_exports__.default (.nuxt/server.js:82:0)

What could cause this?

Update:
Removing @nuxt/content from the modules resolves this.

    // https://go.nuxtjs.dev/axios
    '@nuxtjs/axios',
    // https://go.nuxtjs.dev/content
    '@nuxt/content'
  ],

We do have sample content in the /content directory. Does the XDN support @nuxt/content?

Have you tried moving it to buildModules as described in https://developer.moovweb.com/guides/nuxt#section_modules_vs_buildmodules ?