feat: commit unoptimised assets to cleanup later
Some checks are pending
Docker / run-tests (push) Waiting to run
Docker / build-and-push-image (push) Blocked by required conditions

This commit is contained in:
Troy 2025-05-05 19:29:23 +01:00
parent 26258249d1
commit de0b56ef5b
Signed by: troy
GPG key ID: DFC06C02ED3B4711
142 changed files with 359 additions and 425 deletions

View file

@ -1,4 +1,4 @@
import { defineConfig } from "astro/config";
import { defineConfig, fontProviders } from "astro/config";
import sitemap from "@astrojs/sitemap";
import rehypeExternalLinks from "rehype-external-links";
import mdx from "@astrojs/mdx";
@ -31,4 +31,23 @@ export default defineConfig({
},
},
},
redirects: {
"/archive": "/projects/archive",
},
experimental: {
fonts: [
{
provider: fontProviders.fontsource(),
name: "Outfit",
cssVariable: "--font-outfit",
weights: ["100 900"],
},
{
provider: fontProviders.fontsource(),
name: "Red Hat Mono",
cssVariable: "--font-red-hat-mono",
weights: ["300 700"],
},
],
},
});