Files
fluxent-web/proxy.ts
T
SerinaNya c33857ffac feat(ledger): add bookkeeping workbench and transaction views
- Add transactions_dirty table and zero-tolerance cleansing action

- Implement bookkeeping workbench (/bookkeeping) with searchable Combobox channel selector and card suffix / account identifier

- Implement transaction ledger (/transactions) with date groupings, multi-currency metrics, and filters

- Update AGENTS.md guidelines for Base UI Select and Combobox bindings
2026-09-06 23:23:29 +08:00

13 lines
260 B
TypeScript

import NextAuth from "next-auth"
import { authConfig } from "@/lib/auth/config"
const { auth } = NextAuth(authConfig)
export const proxy = auth
export default auth
export const config = {
matcher: ["/((?!api|_next/static|_next/image|favicon.ico).*)"],
}