Is it feasible for a Vue App to access an external configuration file? I envision a setup where I deploy the application along with the config file; then, I should be able to modify the configuration in the external file without needing to rebuild the entire application. Is there a way to accomplish this goal? Currently, I am utilizing a separate Vuex store, but changing the configuration necessitates rebuilding the entire app.
I neglected to specify that the project is built using Vue CLI.