- Next.js 16.2.1
- React 19.2.4
- TypeScript 5
- ESLint 9
- Axios 1.14.0
- Locale routing for
az,en, andru - Default locale redirect to
az - Ready-to-use Axios client powered by
API_URL
pnpm dev
pnpm build
pnpm start
pnpm lintThe development and production server port is read from APP_PORT in .env.
NEXT_PUBLIC_API_URL mirrors API_URL so the shared Axios client can work in both server and client code.
src/app/[locale]/page.tsx- localized home pagesrc/i18n/config.ts- locale config and translationssrc/lib/api.ts- Axios client and request helpersrc/proxy.ts- default locale redirect
Vugar Safarzada