Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,10 @@ blob-report/
# Local agent planning state; project-level skills in .agents remain versioned.
.hermes/
output/

# wrangler files
.wrangler
.dev.vars*
!.dev.vars.example
.env*
!.env.example
3 changes: 3 additions & 0 deletions astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ import { siteDiscovery } from "./src/data/site-discovery.ts";
export default defineConfig({
site: siteDiscovery.origin,
output: "static",

build: {
inlineStylesheets: "always"
},

integrations: [
sitemap(),
seoGraph({
Expand All @@ -22,6 +24,7 @@ export default defineConfig({
validateInternalLinks: true
})
],

fonts: [
{
provider: fontProviders.local(),
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"preview": "wrangler dev",
"fonts:check": "nub scripts/check-font-glyphs.ts",
"fonts:update": "nub scripts/update-local-fonts.ts",
"check": "astro check",
Expand All @@ -14,7 +14,8 @@
"lighthouse": "node scripts/run-lighthouse.mjs",
"lighthouse:check": "node scripts/run-lighthouse.mjs --check",
"test:e2e": "playwright test",
"verify": "pnpm fonts:check && pnpm check && pnpm lint && pnpm format:check && pnpm test:e2e"
"verify": "pnpm fonts:check && pnpm check && pnpm lint && pnpm format:check && pnpm test:e2e",
"deploy": "pnpm build && wrangler deploy"
},
"dependencies": {
"astro": "7.1.1"
Expand Down
9 changes: 9 additions & 0 deletions wrangler.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"$schema": "./node_modules/wrangler/config-schema.json",
"name": "matharts-website",
"compatibility_date": "2026-07-19",
"assets": {
"directory": "./dist",
"not_found_handling": "404-page"
}
}
Loading