A KeystoneJS App for serving a Next.js application.
const { NextApp } = require('@keystonejs/app-next');
...
module.exports = {
keystone,
apps: [
new GraphQLApp(),
new AdminUIApp({ enableDefaultRoute: false }),
new NextApp({ dir: 'app' }),
],
distDir,
};
Option | Type | Default | Required | Description |
---|---|---|---|---|
dir |
String |
null |
true |
The directory of the Next.js app. |