diff --git a/astro.config.mjs b/astro.config.mjs
index a21ded0..95d4ab6 100644
--- a/astro.config.mjs
+++ b/astro.config.mjs
@@ -84,6 +84,10 @@ export default defineConfig({
rehypePlugins: [responsiveTablesRehypePlugin, lazyImagesRehypePlugin],
},
+ build: {
+ format: 'file'
+ },
+
vite: {
resolve: {
alias: {
diff --git a/src/components/Logo.astro b/src/components/Logo.astro
index 577cb47..095f5e6 100644
--- a/src/components/Logo.astro
+++ b/src/components/Logo.astro
@@ -1,22 +1,9 @@
---
-import Image from './common/Image.astro';
+import { Image } from 'astro:assets';
+
+import sturmfreiLogo from '~/assets/images/sturmfrei-logo.svg';
+import sturmfreiLogoDark from '~/assets/images/sturmfrei-logo-dark.svg';
---
-
-
-
+
+