No description
  • CSS 61.2%
  • Vue 21.4%
  • TypeScript 17%
  • JavaScript 0.3%
Find a file
bivashy 9cdafbb0bd
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Disable SSR
2026-04-30 16:08:59 +05:00
app Disable SSR 2026-04-30 16:08:59 +05:00
public Show 404 character if no poster is present 2026-04-03 16:10:41 +05: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 Dockerfile with CI/CD, and proper API_BASE in .env 2026-04-30 11:50:34 +05:00
bun.lock Update lockfile 2026-04-30 15:28:57 +05:00
components.json Initial website implementation with Hero section 2026-01-10 01:59:02 +05:00
Dockerfile Try to minimize container image 2026-04-30 15:24:50 +05:00
nuxt.config.ts Disable SSR 2026-04-30 16:08:59 +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
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.