feat: refs #7551 made quasar build warnings to throw error
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Pau Rovira 2025-02-07 14:40:36 +01:00
parent de6020626f
commit 24b07683a8
1 changed files with 6 additions and 0 deletions

View File

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