feat: enhance deployment output logging and update background image handling in Home component

This commit is contained in:
sha
2025-06-20 17:12:25 +03:00
parent 946adf5ed6
commit 7ff2985fb0
3 changed files with 23 additions and 16 deletions
-11
View File
@@ -10,17 +10,6 @@ export default defineConfig({
assetsDir: 'assets',
sourcemap: false,
minify: 'terser',
rollupOptions: {
output: {
assetFileNames: (assetInfo) => {
// Keep SVG files and other images in the root for easier path resolution
if (assetInfo.name?.endsWith('.svg') || assetInfo.name?.endsWith('.jpg') || assetInfo.name?.endsWith('.png')) {
return '[name][extname]'
}
return 'assets/[name]-[hash][extname]'
}
}
}
},
server: {
host: true,