No description
  • Vue 77.4%
  • TypeScript 11.6%
  • CSS 11%
Find a file
2026-04-23 14:39:00 +05:00
app Implement basic page of inspection 2026-04-23 14:39:00 +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 Implement basic page of inspection 2026-04-23 14:39:00 +05:00
components.json Initial implementation 2026-04-18 02:34:14 +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 Implement cache page 2026-04-19 00:06:54 +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.