File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ import { codecovVitePlugin } from "@codecov/vite-plugin";
44
55// https://vitejs.dev/config/
66export default defineConfig ( {
7- build : {
8- rollupOptions : {
9- output : {
10- assetFileNames : "[name].[hash].js" ,
11- chunkFileNames : "[name]-[hash].js" ,
12- } ,
13- } ,
14- } ,
7+ // build: {
8+ // rollupOptions: {
9+ // output: {
10+ // assetFileNames: "[name].[hash].js",
11+ // chunkFileNames: "[name]-[hash].js",
12+ // },
13+ // },
14+ // },
1515 plugins : [
1616 react ( ) ,
1717 codecovVitePlugin ( {
@@ -20,6 +20,8 @@ export default defineConfig({
2020 uploadToken : process . env . VITE_UPLOAD_TOKEN ,
2121 apiUrl : process . env . VITE_API_URL ,
2222 debug : true ,
23+ assetFileNames : "[name].[hash].js" ,
24+ chunkFileNames : "[name]-[hash].js" ,
2325 } ) ,
2426 ] ,
2527} ) ;
You can’t perform that action at this time.
0 commit comments