Modern Vue 3 frontend built with Nuxt 4 and Nuxt UI Pro.
- Node.js 24.0.0 or higher
- npm
# Create local config
make init
# Install dependencies
make install
# Prepare setup
make setupApplication is configured in nuxt.config.ts. Environment variables can be overridden in .env:
# Backend API URL (default: http://localhost:8080)
NUXT_PUBLIC_BACKEND_URL=http://localhost:8080make devThen visit http://localhost:3000 in your browser.
# Quality assurance (lint)
make qa
# Run ESLint check
make lint
# Build for production
make build
# Preview production build
make preview
# Generate static site
make generate
# Clean cache and build artifacts
make clean

