Оцените с NextJS - PullRequest
       61

Оцените с NextJS

0 голосов
/ 01 мая 2020

Я ищу совет, как запустить fastify-cli с fastify-next js

Я пытался просто добавить код в предлагаемое место, но он не работает.

'use strict'

const path = require('path')
const AutoLoad = require('fastify-autoload')

module.exports = function (fastify, opts, next) {
  // Place here your custom code!

  fastify.register(require('fastify-nextjs'))
      .after(() => {
        fastify.next('/hello')
      })

  // Do not touch the following lines

  // This loads all plugins defined in plugins
  // those should be support plugins that are reused
  // through your application
  fastify.register(AutoLoad, {
    dir: path.join(__dirname, 'plugins'),
    options: Object.assign({}, opts)
  })

  // This loads all plugins defined in services
  // define your routes in one of these
  fastify.register(AutoLoad, {
    dir: path.join(__dirname, 'services'),
    options: Object.assign({}, opts)
  })

  // Make sure to call next when done
  next()

}
...