Skip to content

Commit a4a95dd

Browse files
committed
Remove unused thumbnail images and update Vite configuration to enable source maps for production builds
1 parent 78ec90b commit a4a95dd

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

public/thumbnail.jpg

-64.7 KB
Binary file not shown.

public/thumbnail.webp

-30.7 KB
Binary file not shown.

vite.config.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,13 @@ export default defineConfig({
2222
'@': fileURLToPath(new URL('./src', import.meta.url)),
2323
},
2424
},
25+
build: {
26+
sourcemap: true, // Enable source maps for production
27+
rollupOptions: {
28+
output: {
29+
// Optional: Configure source map file names
30+
sourcemapFileNames: 'assets/[name].[hash].js.map',
31+
},
32+
},
33+
},
2534
})

0 commit comments

Comments
 (0)