tessl install github:onmax/nuxt-skills --skill viteVite is a next-generation frontend build tool that provides a fast dev server with HMR and optimized production builds
Review Score
76%
Validation Score
12/16
Implementation Score
100%
Activation Score
33%
Next-gen frontend build tool with native ESM dev server and Rolldown-powered builds.
npm create vite@latest my-app// vite.config.ts
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
port: 3000,
},
})vite # Dev server
vite build # Production build
vite preview # Preview build| Task | File |
|---|---|
| Config file, options, CLI, plugins | config.md |
| ESM, CSS, assets, env vars, glob import | features.md |
| Dev server, HMR, workers, performance | dev.md |
| Production, library mode, SSR, chunking | build.md |
| JS API, plugin authoring, module graph | advanced.md |
Setting up a project? → Load config.md
Using CSS/assets/env vars? → Load features.md
Dev server issues? → Load dev.md
Building for production? → Load build.md
Writing plugins? → Load advanced.md
vitest skill (Vite-native testing)vue skill for component patternstsdown skill for TypeScript libs