Hi
I am building a JUCE plugin and using VUE 3 app for frontend. While developing I want to serve my UI using VUE dev server. I can easily access my VUE dev server using the webView.goToURL(LOCAL_DEV_SERVER_ADDRESS) call.
I also would like to fetch data from JUCE to my VUE application, but then I need to use ResourceProvider and getResource method to serve this data. In this method I can serve my frontend files as zip, but for that I need to build and zip VUE 3 app on every change, which slows down the process.
Could someone give me some advice, how to do both? Is it possible?
Thank you
