restructured and simplified favicon

This commit is contained in:
Niki Wix Skaarup 2025-04-12 21:30:26 +02:00
parent de17515810
commit 11e5b20722
Signed by: nikiskaarup
GPG key ID: FC2F1B116F6E788C
2 changed files with 5 additions and 6 deletions

View file

@ -1,17 +1,16 @@
import { env } from "bun";
import homepage from '@routes/index.html';
import { drizzleDB } from "@server/db";
import { entry } from "@server/db/schema";
import favicon from '@static/favicon.png';
import robotsTxt from '@static/robots.txt';
import sitemapTxt from '@static/sitemap.txt';
import favicon from '@static/favicon.png';
import { entry } from "@server/db/schema";
import { env } from "bun";
import { desc, eq } from "drizzle-orm";
import { drizzleDB } from "@server/db";
const development = env.NODE_ENV !== 'production';
const faviconInit = { headers: new Headers({ 'Content-Type': 'image/png' }) };
console.log('woo');
Bun.serve({
routes: {
'/': homepage,