Right now, only one file can be passed to vite()->panelCss() or vite()->panelJs(). Since your can import as many other files as you want inside these entry files this is not really a restriction, but adding support for multiple files, like vite()->panelJs(['panel.js', 'some-other-panel.js']) is a simple change, so we might as well add it.
Right now, only one file can be passed to
vite()->panelCss()
orvite()->panelJs()
. Since your can import as many other files as you want inside these entry files this is not really a restriction, but adding support for multiple files, likevite()->panelJs(['panel.js', 'some-other-panel.js'])
is a simple change, so we might as well add it.