Some optimizations
All checks were successful
Docker Deploy / build-and-push (push) Successful in 4m25s

This commit is contained in:
2026-01-24 18:23:59 -07:00
parent c048d0d47a
commit d06a453461
2 changed files with 7 additions and 3 deletions

View File

@@ -14,6 +14,9 @@ export default defineConfig({
}, },
output: "server", output: "server",
prefetch: true, prefetch: true,
build: {
inlineStylesheets: "always",
},
vite: { vite: {
plugins: [tailwindcss()], plugins: [tailwindcss()],
}, },

View File

@@ -10,10 +10,11 @@ import { config } from "../config";
<Image <Image
src={config.personalInfo.profileImage.src} src={config.personalInfo.profileImage.src}
alt={config.personalInfo.profileImage.alt} alt={config.personalInfo.profileImage.alt}
width={300} widths={[192, 384]}
height={300} sizes="12rem"
layout="constrained" layout="constrained"
priority={true} loading="eager"
fetchpriority="high"
class="rounded-full mx-auto" class="rounded-full mx-auto"
style="max-width: 12rem; width: 100%;" style="max-width: 12rem; width: 100%;"
/> />