I am currently attmpting to make the frontend of our springboot app, a Vuetify (vue.js) app. Previously — before I introduced Vuetify — I had been using this resource with minor adjustments for Vue. But now, since I’m using npm create vuetify@latest
, I no longer have Vite, so am unable to change the output dir in the same way.
How then do I do this 😕
export default defineConfig({
...
build: {
outDir: '../resources/static/',
emptyOutDir: true,
},
});
in vuetify config?