1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

NetlifyでAuth.jsを使うと「UntrustedHost: Host must be trusted」エラーが発生する問題

Posted at

発生した現象

Netlify 上で Next.js + Auth.js(NextAuth.js)を使用しようとした際に、UntrustedHost: Host must be trusted というエラーに悩まされました。

ローカル環境では問題なく動作するのに、Netlify にデプロイするとエラーが発生していました。

version

Next.js: 15.1.7
next-auth: ^5.0.0-beta.22,
Prisma: ^6.4.1
TypeScript: ^5.7.3

エラー内容

[auth][error] UntrustedHost: Host must be trusted.
URL was: https://you-lift.netlify.app/api/auth/providers

このエラーの原因は、Auth.js(NextAuth.js)が Netlify のデプロイ先 URL を「信頼されたホスト」として認識していない ことにあります。
NEXTAUTH_URL は正しい URL を設定済みです...

解決策

Auth.js のauth.tsという設定ファイルで、trustHost: true を追加するだけで解決しました。

import NextAuth, { Session } from "next-auth";
import Google from "next-auth/providers/google";
import { PrismaAdapter } from "@auth/prisma-adapter";
import { prisma } from "../prisma";

export const authConfig = {
  adapter: PrismaAdapter(prisma),
  providers: [Google],
  pages: {
    signIn: "/login",
  },
  callbacks: {
    authorized: async ({ auth }: { auth: Session | null }) => {
      return !!auth;
    },
  },
  trustHost: true, // ← ここを追加!!
};

export const { handlers, signIn, signOut, auth } = NextAuth(authConfig);
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?