c187cd22ed
- 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.
19 lines
392 B
YAML
19 lines
392 B
YAML
config:
|
||
path_mode: relative
|
||
|
||
prompts:
|
||
preset: "下面的代码来自项目相对路径 {{path}}:\n---\n{{content}}"
|
||
|
||
preset:
|
||
double_app:
|
||
- "app/app/page.tsx"
|
||
- "app/app/layout.tsx"
|
||
|
||
login:
|
||
- "app/login/*"
|
||
- "app/page.tsx"
|
||
- "app/layout.tsx"
|
||
- "app/(dashboard)/layout.tsx"
|
||
- "app/(dashboard)/discover/*"
|
||
- "app/(dashboard)/roleplay/*"
|
||
- "proxy.ts" |