- Add centralized apiPost() client (src/services/api.ts) that handles auth injection, error handling, and token expiry uniformly - Implement real authentication against /accounts/api/login/ and /logout/ - Rewrite partnerApi and userAppApi to use centralized client - Connect Partners page to /partner/list/ and /partner/create/ APIs - Add Vite proxy rules for /accounts/api and /partner endpoints - Update AuthUser type to match full backend user response - Move NuqsAdapter inside BrowserRouter for correct routing context Made-with: Cursor
28 lines
277 B
Plaintext
28 lines
277 B
Plaintext
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
node_modules
|
|
dist
|
|
dist-ssr
|
|
*.local
|
|
.env
|
|
.env.*
|
|
.npm-cache/
|
|
|
|
# Editor directories and files
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
.idea
|
|
.DS_Store
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|