feat: refs #7551 made quasar build warnings to throw error
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
parent
de6020626f
commit
24b07683a8
|
@ -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: {},
|
||||
|
||||
|
|
Loading…
Reference in New Issue