File tree Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 1010
1111
1212
13+
14+
15+
16+
17+
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
28+
29+
30+
31+
32+
1333
1434# @schemasset/nuxt - auto-generated asset files - DO NOT EDIT THIS SECTION MANUALLY
1535public /favicon.ico
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export default defineNuxtConfig({
1515 subdir : "domain-a" ,
1616 outDir : "public" ,
1717 } ,
18- failOnError : false ,
18+ failOnError : true ,
1919 } ,
2020 devtools : { enabled : true } ,
2121} ) ;
Original file line number Diff line number Diff line change @@ -321,8 +321,7 @@ export default defineNuxtModule<ModuleOptions>({
321321 logger . error ( `Schema validation failed, but continuing with asset copying` ) ;
322322 // Don't exit or throw error, continue with asset copying
323323 if ( process . env . NODE_ENV === "production" && options . failOnError ) {
324- logger . warn ( "Production build with validation errors. Set failOnError: false to suppress this warning." ) ;
325- // Still don't exit, allow copying assets
324+ process . exit ( 1 ) ;
326325 }
327326 }
328327
You can’t perform that action at this time.
0 commit comments