PR #61 opened: chore(deps): bump laravel-vite-plugin from 2.1.0 to 3.0.0
Bumps laravel-vite-plugin from 2.1.0 to 3.0.0.
▶Release notes
Sourced from laravel-vite-plugin's releases.
v3.0.0
What's Changed
- [3.x] Add Vite 8 support by
@timacdonaldin laravel/vite-plugin#342Please see the upgrade guide for important upgrade steps.
Full Changelog: https://github.com/laravel/vite-plugin/compare/v2.1.0...v3.0.0
▶Changelog
Sourced from laravel-vite-plugin's changelog.
v3.0.0 - 2026-03-18
What's Changed
- [3.x] Add Vite 8 support by
@timacdonaldin laravel/vite-plugin#342Please see the upgrade guide for important upgrade steps.
Full Changelog: https://github.com/laravel/vite-plugin/compare/v2.1.0...v3.0.0
▶Upgrade guide
Sourced from laravel-vite-plugin's upgrade guide.
Upgrade Guide
2.xto3.x
- Adds support for Vite 8
Upgrade Path
If you are using
import.meta.globto add static assets into your build, you will need to migrate them to the newassetsconfig option, e.g.,// file: ./resources/js/app.jsimport './bootstrap';
- import.meta.glob([
'../images/**','../favicons/**',])// file: ./vite.config.jsimport { 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,
assets: ['../images/**','../favicons/**',], });], }),
0.xto1.x
- Adds support for Vite 5 and removes support for Vite 3 and 4.
- Introduces an
npx clean-orphaned-assetscommand to clean orphaned assets in Vite's build directories.- Introduces Valet / Herd TLS certificate auto detection.
- Adds
app/Livewire/**to the default "refresh" paths.- Adds output of SSR manifest for SSR builds.
Notable Changes
... (truncated)
▶Commits
26336c93.0.08653714[3.x] Add Vite 8 support (#342)cf40a9aUpdate CHANGELOG- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
▶Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)