We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52a8c5e commit f352c4aCopy full SHA for f352c4a
packages/qwik/src/optimizer/src/plugins/vite.ts
@@ -335,6 +335,12 @@ export function qwikVite(qwikViteOpts: QwikVitePluginOptions = {}): any {
335
exclude: [/./],
336
},
337
rollupOptions: {
338
+ /**
339
+ * This is a workaround to have predictable chunk hashes between builds. It doesn't seem
340
+ * to impact the build time.
341
+ * https://github.com/QwikDev/qwik/issues/7226#issuecomment-2647122505
342
+ */
343
+ maxParallelFileOps: 1,
344
output: {
345
// We have waterfall prevention so don't hoist
346
hoistTransitiveImports: false,
0 commit comments