feat: refs #8006 quasar viteConfig

This commit is contained in:
Javier Segarra 2025-02-20 13:10:09 +01:00
parent 158c0f684a
commit e797905764
1 changed files with 6 additions and 0 deletions

View File

@ -80,6 +80,12 @@ export default configure(function (/* ctx */) {
viteConf.build.modulePreload = {
polyfill: false,
};
viteConf.build.rollupOptions = {
onwarn(warning, warn) {
throw new Error(warning.message);
},
};
},
// viteVuePluginOptions: {},