Awesome-omni-skill vite-config
Generates vite.config.ts for building and serving the Vue 3 application. Configures dev server, API proxy, build format, and plugins.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/development/vite-config" ~/.claude/skills/diegosouzapw-awesome-omni-skill-vite-config && rm -rf "$T"
manifest:
skills/development/vite-config/SKILL.mdsource content
Vite Config Skill
Purpose
Generate the
vite.config.ts file for building and serving the Vue 3 application.
Input Parameters
Read from
copilot-instructions.md and docs/requirements/application-parameters.md:
: The application ID for style tagapplication_id
: The development server portdefault_port
: The base path for API proxyapi_base_path
: The build output format (system or es)vite_build_format
Output
Create the file:
vite.config.ts
Template
See:
examples.md in this directory for complete template and detailed examples.
Notes
- The proxy configuration should be updated with the actual backend service URL
- The
is imported from the global constants fileappId - CSS is injected by JavaScript in build mode for single-spa compatibility
- SVG loader is configured to preserve viewBox for proper scaling