What problem does it solve? Frontend developers working with Vite need accurate, up-to-date guidance on configuration, plugin authoring, SSR setup, and the breaking changes introduced by Vite 8's Rolldown bundler, without digging through scattered documentation. ## Core Features & Use Cases - Configuration Guidance: Covers vite.config.ts, defineConfig, conditional configs, loadEnv, aliases, proxies, and build targets. - Plugin Authoring: Explains Vite-specific hooks, virtual modules, plugin ordering, and client-server HMR communication. - Build & SSR: Documents library mode, multi-page apps, the JavaScript API, and SSR middleware patterns. - Vite 8 Migration: Maps rollupOptions to rolldownOptions and esbuild to oxc for the Rolldown-powered release. - Use Case: When upgrading a project to Vite 8, use this Skill to rewrite the config for Rolldown and Oxc, then verify plugin compatibility. ## Quick Start Ask the AI to review my vite.config.ts and migrate it to Vite 8 with Rolldown and Oxc settings.