Next.js Nrwl NX不反映next.config

Next.js Nrwl NX不反映next.config,next.js,nrwl,Next.js,Nrwl,我们正在尝试为Nrwl NX next应用程序使用custom next.config,但应用程序未选择配置。 我们正在尝试应用重写。 任何帮助都将受到高度欢迎 module.exports = { async rewrites() { return [ // Rewriting to an another app, running on different port { source: '/docs', d

我们正在尝试为Nrwl NX next应用程序使用custom next.config,但应用程序未选择配置。 我们正在尝试应用重写。 任何帮助都将受到高度欢迎

module.exports = {
  async rewrites() {
    return [
                // Rewriting to an another app, running on different port
      {
        source: '/docs',
        destination: 'http://localhost:4040/docs',
      },
    ]
  },
}