No description
  • Vue 77.4%
  • TypeScript 11.4%
  • CSS 10.9%
  • Dockerfile 0.2%
Find a file
bivashy 0ee98c4d40
All checks were successful
ci/woodpecker/push/dev Pipeline was successful
ci/woodpecker/push/production Pipeline was successful
Trigger CI/CD
2026-06-02 22:41:36 +05:00
.woodpecker Split into two, dev and production 2026-06-02 15:34:51 +05:00
app Add example links 2026-06-02 22:41:11 +05:00
public Initial implementation 2026-04-18 02:34:14 +05:00
.gitignore Initial implementation 2026-04-18 02:34:14 +05:00
bun.lock Update bun.lock and package-lock.json 2026-06-02 01:14:05 +05:00
components.json Initial implementation 2026-04-18 02:34:14 +05:00
Dockerfile Update node version for production 2026-06-02 15:32:11 +05:00
Dockerfile.dev Split into two, dev and production 2026-06-02 15:34:51 +05:00
eslint.config.mjs Initial implementation 2026-04-18 02:34:14 +05:00
nuxt.config.ts Initial implementation 2026-04-18 02:34:14 +05:00
package-lock.json Update deps 2026-06-02 01:27:22 +05:00
package.json Implement basic page of inspection 2026-04-23 14:39:00 +05:00
README.md Initial implementation 2026-04-18 02:34:14 +05:00
tsconfig.json Initial implementation 2026-04-18 02:34:14 +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.