We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a72db1 commit 10b481aCopy full SHA for 10b481a
1 file changed
console/vite.config.ts
@@ -30,16 +30,13 @@ export default defineConfig({
30
},
31
32
build: {
33
- // reproducibility: disable non-deterministic options
34
cssCodeSplit: false,
35
sourcemap: false,
36
rollupOptions: {
37
output: {
38
- // use content hash for deterministic chunk names
39
chunkFileNames: "assets/[name]-[hash].js",
40
entryFileNames: "assets/[name]-[hash].js",
41
assetFileNames: "assets/[name]-[hash][extname]",
42
- // ensure consistent chunk ordering by grouping node_modules
43
manualChunks: (id) => {
44
if (id.includes("node_modules")) {
45
return "vendor"
0 commit comments