next.js/test/development/app-dir/logging-incoming-request/next.config.js
next.config.js13 lines215 B
/**
 * @type {import('next').NextConfig}
 */
const nextConfig = {
  logging: {
    incomingRequests: {
      ignore: [/^\/hello/, /^\/non-existent/, /^\/_next\/static\//],
    },
  },
}

module.exports = nextConfig
Quest for Codev2.0.0
/
SIGN IN