/laravel-vite
Complete Vite bundling for Laravel - assets, HMR, SSR, frameworks, optimization. Use when configuring frontend build pipeline.
$ npx -y skills add fusengine/agents --skill laravel-vite --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/laravel-vite
Context preview
The summary Claude sees to decide when to auto-load this skill.
Complete Vite bundling for Laravel - assets, HMR, SSR, frameworks, optimization. Use when configuring frontend build pipeline.
SKILL.md
laravel-vite.SKILL.mdname: laravel-vite
description: Complete Vite bundling for Laravel - assets, HMR, SSR, frameworks, optimization. Use when configuring frontend build pipeline.
versions:
laravel: "13.0"
vite: "6.x"
php: "8.3"
user-invocable: true
references: references/setup.md, references/entry-points.md, references/preprocessors.md, references/assets.md, references/environment.md, references/dev-server.md, references/build-optimization.md, references/ssr.md, references/inertia.md, references/frameworks.md, references/security.md, references/deployment.md, references/templates/ViteConfig.js.md, references/templates/ViteConfigAdvanced.js.md, references/templates/InertiaSetup.md, references/templates/SSRSetup.md
related-skills: laravel-blade, laravel-livewire, fusecore
<objective> Covers Vite as Laravel's frontend build tool: initial setup and the laravel-vite-plugin, multiple entry points, CSS preprocessors (Sass/Less/PostCSS), asset handling, VITE_-prefixed environment variables, the dev server and HMR (including Docker configuration), build optimization (chunking, minification), server-side rendering, Inertia integration, JS framework plugins (Vue/React/Svelte), CSP nonce security, and production deployment. </objective>
Laravel Vite
Agent Workflow (MANDATORY)
Before ANY implementation, use `TeamCreate` to spawn 3 agents:
1. **fuse-ai-pilot:explore-codebase** - Check existing vite.config.js, package.json 2. **fuse-ai-pilot:research-expert** - Verify latest Vite docs via Context7 3. **mcp__context7__query-docs** - Query specific patterns (SSR, Inertia)
After implementation, run **fuse-ai-pilot:sniper** for validation.
---
Overview
Vite is Laravel's default frontend build tool. It provides fast HMR in development and optimized builds for production.
| Feature | Purpose | |---------|---------| | **HMR** | Instant updates during development | | **Bundling** | Optimized production assets | | **SSR** | Server-side rendering support | | **Frameworks** | Vue, React, Svelte integration |
---
Critical Rules
1. **Always use laravel-vite-plugin** - Never raw Vite config 2. **VITE_ prefix for env vars** - Only exposed to frontend 3. **Use @vite directive** - Not manual script tags 4. **Build before deploy** - `npm run build` in CI/CD 5. **Configure HMR for Docker** - Set `server.host: '0.0.0.0'`
---
Decision Guide
Stack Selection
Using Tailwind CSS?
├── YES → v4? @tailwindcss/vite plugin
│ v3? PostCSS config
└── NO → Just laravel-vite-plugin
Using JavaScript framework?
├── Vue → @vitejs/plugin-vue
├── React → @vitejs/plugin-react
├── Svelte → @sveltejs/vite-plugin-svelte
└── None → Plain JS/CSS only
SSR Decision
Need SEO/fast first paint?
├── YES → Using Inertia?
│ ├── YES → Inertia SSR
│ └── NO → Consider Inertia or Livewire
└── NO → Client-side only
---
Reference Guide
Concepts (WHY & Architecture)
| Topic | Reference | When to Consult | |-------|-----------|-----------------| | **Setup** | [setup.md](references/setup.md) | Initial configuration | | **Entry Points** | [entry-points.md](references/entry-points.md) | Multiple bundles | | **Preprocessors** | [preprocessors.md](references/preprocessors.md) | Sass, Less, PostCSS | | **Assets** | [assets.md](references/assets.md) | Images, fonts, static | | **Environment** | [environment.md](references/environment.md) | VITE_ variables | | **Dev Server** | [dev-server.md](references/dev-server.md) | HMR, Docker, HTTPS | | **Build** | [build-optimization.md](references/build-optimization.md) | Chunks, minification | | **SSR** | [ssr.md](references/ssr.md) | Server-side rendering | | **Inertia** | [inertia.md](references/inertia.md) | SPA without API | | **Frameworks** | [frameworks.md](references/frameworks.md) | Vue, React, Svelte | | **Security** | [security.md](references/security.md) | CSP nonce | | **Deployment** | [deployment.md](references/deployment.md) | Production, CDN |
Templates (Complete Code)
| Template | When to Use | |----------|-------------| | [ViteConfig.js.md](references/templates/ViteConfig.js.md) | Standard setup | | [ViteConfigAdvanced.js.md](references/templates/ViteConfigAdvanced.js.md) | Full optimization | | [InertiaSetup.md](references/templates/InertiaSetup.md) | Inertia + Vue/React | | [SSRSetup.md](references/templates/SSRSetup.md) | SSR configuration |
---
Quick Reference
Basic Setup
// vite.config.js
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
export default defineConfig({
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.js'],
refresh: true,
}),
],
});Blade Directive
<!DOCTYPE html>
<head>
@vite(['resources/css/app.css', 'resources/js/app.js'])
</head>Commands
| Command | Purpose | |---------|---------| | `npm run dev` | Start dev server | | `npm run build` | Production build | | `npm run preview` | Preview build |
---
Best Practices
DO
- Use `refresh: true` for Blade HMR
- Configure aliases for clean imports
- Split vendors into separate chunks
- Use `VITE_` prefix for frontend env vars
- Test Docker/Sail config locally
DON'T
- Expose sensitive data via VITE_ vars
- Forget to build before deploying
- Use absolute paths for assets
- Skip source maps in staging
- Ignore chunk size warnings
---
Laravel 13 Notes
`laravel/vite-plugin` reste compatible **Laravel 13 + Vite 6**. Adaptations :
- Le helper `@vite()` Blade fonctionne sans changement
- Pour Inertia 2 + React 19 : utiliser le preset `@vitejs/plugin-react` v4+
- HMR via WebSocket : Reverb 1.4 et Vite peuvent cohabiter sur des ports distincts en dev
- Build production : ajouter `build.target: 'es2023'` pour profiter de PHP 8.3 côté serveur
Read more
name: laravel-vite description: Complete Vite bundling for Laravel - assets, HMR, SSR, frameworks, optimization. Use when configuring frontend build pipeline. versions: laravel: "13.0" vite: "6.x" php: "8.3" user-invocable: true references: references/setup.md, references/entry-points.md, references/preprocessors.md, references/assets.md, references/environment.md, references/dev-server.md, references/build-optimization.md, references/ssr.md, references/inertia.md, references/frameworks.md, references/security.md, references/deployment.md, references/templates/ViteConfig.js.md, references/templates/ViteConfigAdvanced.js.md, references/templates/InertiaSetup.md, references/templates/SSRSetup.md related-skills: laravel-blade, laravel-livewire, fusecore
<objective> Covers Vite as Laravel's frontend build tool: initial setup and the laravel-vite-plugin, multiple entry points, CSS preprocessors (Sass/Less/PostCSS), asset handling, VITE_-prefixed environment variables, the dev server and HMR (including Docker configuration), build optimization (chunking, minification), server-side rendering, Inertia integration, JS framework plugins (Vue/React/Svelte), CSP nonce security, and production deployment. </objective>
Laravel Vite
Agent Workflow (MANDATORY)
Before ANY implementation, use `TeamCreate` to spawn 3 agents:
1. **fuse-ai-pilot:explore-codebase** - Check existing vite.config.js, package.json 2. **fuse-ai-pilot:research-expert** - Verify latest Vite docs via Context7 3. **mcp__context7__query-docs** - Query specific patterns (SSR, Inertia)
After implementation, run **fuse-ai-pilot:sniper** for validation.
---
Overview
Vite is Laravel's default frontend build tool. It provides fast HMR in development and optimized builds for production.
| Feature | Purpose | |---------|---------| | **HMR** | Instant updates during development | | **Bundling** | Optimized production assets | | **SSR** | Server-side rendering support | | **Frameworks** | Vue, React, Svelte integration |
---
Critical Rules
1. **Always use laravel-vite-plugin** - Never raw Vite config 2. **VITE_ prefix for env vars** - Only exposed to frontend 3. **Use @vite directive** - Not manual script tags 4. **Build before deploy** - `npm run build` in CI/CD 5. **Configure HMR for Docker** - Set `server.host: '0.0.0.0'`
---
Decision Guide
Stack Selection
Using Tailwind CSS? ├── YES → v4? @tailwindcss/vite plugin │ v3? PostCSS config └── NO → Just laravel-vite-plugin Using JavaScript framework? ├── Vue → @vitejs/plugin-vue ├── React → @vitejs/plugin-react ├── Svelte → @sveltejs/vite-plugin-svelte └── None → Plain JS/CSS only
SSR Decision
Need SEO/fast first paint? ├── YES → Using Inertia? │ ├── YES → Inertia SSR │ └── NO → Consider Inertia or Livewire └── NO → Client-side only
---
Reference Guide
Concepts (WHY & Architecture)
| Topic | Reference | When to Consult | |-------|-----------|-----------------| | **Setup** | [setup.md](references/setup.md) | Initial configuration | | **Entry Points** | [entry-points.md](references/entry-points.md) | Multiple bundles | | **Preprocessors** | [preprocessors.md](references/preprocessors.md) | Sass, Less, PostCSS | | **Assets** | [assets.md](references/assets.md) | Images, fonts, static | | **Environment** | [environment.md](references/environment.md) | VITE_ variables | | **Dev Server** | [dev-server.md](references/dev-server.md) | HMR, Docker, HTTPS | | **Build** | [build-optimization.md](references/build-optimization.md) | Chunks, minification | | **SSR** | [ssr.md](references/ssr.md) | Server-side rendering | | **Inertia** | [inertia.md](references/inertia.md) | SPA without API | | **Frameworks** | [frameworks.md](references/frameworks.md) | Vue, React, Svelte | | **Security** | [security.md](references/security.md) | CSP nonce | | **Deployment** | [deployment.md](references/deployment.md) | Production, CDN |
Templates (Complete Code)
| Template | When to Use | |----------|-------------| | [ViteConfig.js.md](references/templates/ViteConfig.js.md) | Standard setup | | [ViteConfigAdvanced.js.md](references/templates/ViteConfigAdvanced.js.md) | Full optimization | | [InertiaSetup.md](references/templates/InertiaSetup.md) | Inertia + Vue/React | | [SSRSetup.md](references/templates/SSRSetup.md) | SSR configuration |
---
Quick Reference
Basic Setup
// vite.config.js
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
export default defineConfig({
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.js'],
refresh: true,
}),
],
});Blade Directive
<!DOCTYPE html>
<head>
@vite(['resources/css/app.css', 'resources/js/app.js'])
</head>Commands
| Command | Purpose | |---------|---------| | `npm run dev` | Start dev server | | `npm run build` | Production build | | `npm run preview` | Preview build |
---
Best Practices
DO
- Use `refresh: true` for Blade HMR
- Configure aliases for clean imports
- Split vendors into separate chunks
- Use `VITE_` prefix for frontend env vars
- Test Docker/Sail config locally
DON'T
- Expose sensitive data via VITE_ vars
- Forget to build before deploying
- Use absolute paths for assets
- Skip source maps in staging
- Ignore chunk size warnings
---
Laravel 13 Notes
`laravel/vite-plugin` reste compatible **Laravel 13 + Vite 6**. Adaptations :
- Le helper `@vite()` Blade fonctionne sans changement
- Pour Inertia 2 + React 19 : utiliser le preset `@vitejs/plugin-react` v4+
- HMR via WebSocket : Reverb 1.4 et Vite peuvent cohabiter sur des ports distincts en dev
- Build production : ajouter `build.target: 'es2023'` pour profiter de PHP 8.3 côté serveur
A plugin ecosystem that turns Claude Code into a supervised, multi-agent development environment.
Repo: fusengine/agents
Other skills on fusengine-agents.
- /agent-creator
Use when creating expert agents. Generates agent.md with frontmatter, hooks, required sections, and skill references.
Open skill - /apex-methodology
Use when starting ANY development task -- feature, bug fix, refactor, hotfix (triggers: implement, create, build, fix, add feature, refactor, develop).
Open skill - /brainstorming
Use when creating a feature/component or adding functionality. Fires BEFORE APEX Analyze to refine requirements via structured questioning.
Open skill - /challenge
Use before a root-cause, done/verified claim, irreversible action, or 2nd-time fix reaches the owner (APEX or plain conversation); also fires at every eLicit/Verify gate. Not for code correctness (use sniper).
Open skill - /code-quality
Use when validating code quality after modifications -- SOLID compliance, DRY duplication, linter errors, architecture violations. Do NOT use for functional verification (run verification FIRST, then code-quality).
Open skill - /elicitation
Use when an expert agent self-reviews and self-corrects code after the Execute phase, before sniper validation (BMAD-METHOD elicitation techniques).
Open skill

