メインコンテンツまでスキップ

authInterrupts

authInterrupts 設定オプションを使用すると、アプリケーションで forbidden および unauthorized API を使用できます。これらの関数は実験的なものであるため、使用するには next.config.js ファイルで authInterrupts オプションを有効にする必要があります:

next.config.ts
import type { NextConfig } from 'next'

// 実験的な設定オプションを有効にする
const nextConfig: NextConfig = {
experimental: {
authInterrupts: true,
},
}

export default nextConfig