No description
  • CSS 52.2%
  • Vue 26.6%
  • TypeScript 20.7%
  • JavaScript 0.4%
  • Dockerfile 0.1%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-09-25 11:57:04 +00:00
app fix: remove redundant styles of headroom 2026-09-20 03:26:26 +05:00
public fix: public resources cleanup (#5) 2026-09-25 11:57:04 +00:00
.env.example Disable SSR 2026-04-30 16:08:59 +05:00
.gitignore Initial website implementation with Hero section 2026-01-10 01:59:02 +05:00
.woodpecker.yml Add manual to CI/Cd 2026-09-05 03:44:25 +05:00
components.json Initial website implementation with Hero section 2026-01-10 01:59:02 +05:00
Dockerfile build: fix Dockerfile CMD 2026-09-17 16:29:50 +05:00
LICENSE chore: add LICENSE 2026-09-16 14:35:45 +05:00
nuxt.config.ts feature: enable ssr 2026-09-20 03:27:37 +05:00
openapi-ts.config.ts Add Dockerfile with CI/CD, and proper API_BASE in .env 2026-04-30 11:50:34 +05:00
package.json Move color-mode from dev dependencies 2026-04-30 15:28:13 +05:00
pnpm-lock.yaml build: migrate to pnpm 2026-09-17 14:50:17 +05:00
pnpm-workspace.yaml build: migrate to pnpm 2026-09-17 14:50:17 +05:00
README.md Initial website implementation with Hero section 2026-01-10 01:59:02 +05:00
tsconfig.json Initial website implementation with Hero section 2026-01-10 01:59:02 +05: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.