Skip to content

Commit

Permalink
Attempted workaround for
Browse files Browse the repository at this point in the history
vitejs/vite#10506
but it doesn't solve the issue.
  • Loading branch information
derheld42 committed Oct 6, 2023
1 parent bb9ffb1 commit 53c43fe
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,18 @@ export default defineConfig({
plugins: [sveltekit()],
test: {
include: ['src/**/*.{test,spec}.{js,ts}']
},
build: {
rollupOptions: {
// Trying potential workaround for
// https://github.com/vitejs/vite/issues/10506
//
// Still fails with:
// npm run build
// mv build build1
// npm run build
// diff -qr build build1
maxParallelFileOps: 1
}
}
});

0 comments on commit 53c43fe

Please sign in to comment.