v4.0.0
🚀 Features
Migration:
- All PHP options for the kirby plugin have been removed. Configuration now only happens inside
vite.config.js
and is then shared automatically with PHP (the filesite/config/vite.config.php
is generated). You can just remove anyarnoson.kirby-vite.*
options from your Kirby config. vite()->js()
andvite()->css()
now always need an entry. So if you were usingarnoson.kirby-vite.entry
before, just add the entry everywhere explicitly:vite()->js('your-entry.js')
.