mandant-crm/frontend
Tim Stollberg 570f17e8b8 feat(frontend): commit uncommitted settings, custom fields, and import work
This local working tree had accumulated a substantial amount of
finished-but-never-committed frontend work: custom client fields
(replacing the old static ClientFields with a dynamic
ClientCustomFieldCard + useCustomFields), CSV import
(useImport + settings/import page), history type management
(useHistoryTypes + settings/history-types page), an admin-only route
middleware, several new icon components, a shared useApiFetch
composable, and a client detail page restructure ([id].vue ->
[id]/index.vue). None of it had ever been pushed, so production was
running a stale build that was already linking to routes/components
that didn't exist server-side (missing IconSettings, 404s on
/settings/import, etc). This commit brings the repo in line with
local state.
2026-07-18 16:27:19 +07:00
..
components feat(frontend): commit uncommitted settings, custom fields, and import work 2026-07-18 16:27:19 +07:00
composables feat(frontend): commit uncommitted settings, custom fields, and import work 2026-07-18 16:27:19 +07:00
middleware feat(frontend): commit uncommitted settings, custom fields, and import work 2026-07-18 16:27:19 +07:00
pages feat(frontend): commit uncommitted settings, custom fields, and import work 2026-07-18 16:27:19 +07:00
public feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
server feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
types feat(frontend): commit uncommitted settings, custom fields, and import work 2026-07-18 16:27:19 +07:00
utils feat(frontend): commit uncommitted settings, custom fields, and import work 2026-07-18 16:27:19 +07:00
.gitignore feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
app.vue feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
CLAUDE.md feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
nuxt.config.ts feat(frontend): commit uncommitted settings, custom fields, and import work 2026-07-18 16:27:19 +07:00
package-lock.json feat(frontend): commit uncommitted settings, custom fields, and import work 2026-07-18 16:27:19 +07:00
package.json feat(frontend): commit uncommitted settings, custom fields, and import work 2026-07-18 16:27:19 +07:00
README.md feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
tailwind.config.ts feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
tsconfig.json feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00

Nuxt Minimal Starter

Look at the Nuxt documentation to learn more.

Setup

Make sure to install dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Development Server

Start the development server on http://localhost:3000:

# npm
npm run dev

# pnpm
pnpm dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.