File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 210210 <executions >
211211 <execution >
212212 <id >yarn install build</id >
213- <phase >generate-sources </phase >
213+ <phase >generate-resources </phase >
214214 <goals >
215215 <goal >exec</goal >
216216 </goals >
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ npm run debug
6464yarn debug
6565```
6666
67- This will build the project and copy static test files from ` tests/static ` directory to ` ../target/generated-sources /webreport ` before previewing.
67+ This will build the project and copy static test files from ` tests/static ` directory to ` ../target/classes /webreport ` before previewing.
6868
6969## Available Scripts
7070
Original file line number Diff line number Diff line change 1010 "installAndBuild" : " yarn install && yarn generate && vitest --no-watch && tsc -b && vite build" ,
1111 "lint" : " eslint ." ,
1212 "preview" : " vite preview" ,
13- "debug" : " vite build && cpx \" src-e2e/static/*\" ../target/generated-sources /webreport && vite preview" ,
13+ "debug" : " vite build && cpx \" src-e2e/static/*\" ../target/classes /webreport && vite preview" ,
1414 "test" : " vitest"
1515 },
1616 "dependencies" : {
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export default defineConfig({
1919 } ,
2020 } ,
2121 build : {
22- outDir : '../target/generated-sources /webreport'
22+ outDir : '../target/classes /webreport'
2323 } ,
2424
2525} as UserConfig )
You can’t perform that action at this time.
0 commit comments