integrate backend Google OAuth and set up avatar media proxy

- Implement the full login and onboarding workflow to handle name, handle, and avatar.

- Rewrite avatar asset URLs to route through the self-hosted media service.

- Add Next.js rewrites configuration to proxy media requests directly to the FastAPI backend.
This commit is contained in:
2026-05-20 17:27:16 +08:00
parent 6fe1504e7e
commit c187cd22ed
13 changed files with 673 additions and 271 deletions
+13
View File
@@ -0,0 +1,13 @@
"use client";
import React from "react";
import { GraphqlProvider } from "./ApolloProvider";
export function Providers({ children }: { children: React.ReactNode }) {
return (
<GraphqlProvider>
{/* 在这里可以继续嵌套其他全局 Provider */}
{children}
</GraphqlProvider>
);
}