Skip to content

Commit 244e13d

Browse files
Dean SoferDean Sofer
authored andcommitted
Testing only 404 page
1 parent 4e18797 commit 244e13d

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

vite.config.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,19 @@ export default defineConfig({
3030
}
3131
]
3232
}
33-
})
33+
})
3434
],
35+
build: {
36+
rollupOptions: {
37+
input: {
38+
'404': 'index.html'
39+
},
40+
output: {
41+
entryFileNames: 'assets/[name]-[hash].js',
42+
chunkFileNames: 'assets/[name]-[hash].js',
43+
assetFileNames: 'assets/[name]-[hash].[ext]'
44+
}
45+
}
46+
}
3547
// base: '/PeaceInTheMiddleEast/'
3648
})

0 commit comments

Comments
 (0)