1.0.0 • Published 6 years ago

@keystone-alpha/app-nuxt v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

Nuxt.js App

Usage

const { NuxtApp } = require('@keystone-alpha/app-nuxt');

...

const config = {
  srcDir: "src",
  buildDir: "dist",
  // ...
}

module.exports = {
  keystone,
  apps: [
    new GraphQLApp(),
    new AdminUIApp(),
    new NuxtApp(config),
  ]
};

Config

A config object can be passed to the NuxtApp instance. Documentation for the nuxtConfig options is available on the NuxtJS documentation website.