Releases: arnoson/kirby-vite
Releases · arnoson/kirby-vite
v4.0.7
🐞 Bug Fixes
- Platform-specific path separator - by @bogdancondorachi (f467d)
- Check config file existence - by @bogdancondorachi (723bc)
- Check config file comparison - by @bogdancondorachi (8b68e)
View changes on GitHub
v4.0.6
v4.0.5
v4.0.4
v4.0.3
No significant changes
View changes on GitHub
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')
.