Skip to content
Open
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
9 changes: 7 additions & 2 deletions landing/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,16 @@ import tailwindcss from "@tailwindcss/vite";
import sitemap from "@astrojs/sitemap";


import cloudflare from "@astrojs/cloudflare";


// https://astro.build/config
export default defineConfig({
vite: {
plugins: [tailwindcss()]
},

site: "https://wave.mxv.sh",
integrations: [sitemap({ filter: (page) => !page.includes("/og-banner") })]
});
integrations: [sitemap({ filter: (page) => !page.includes("/og-banner") })],
adapter: cloudflare()
});
26 changes: 16 additions & 10 deletions landing/bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion landing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@
"deploy": "bun run build && wrangler deploy"
},
"dependencies": {
"@astrojs/cloudflare": "^13.1.7",
"@astrojs/sitemap": "^3.7.2",
"@lucide/astro": "^1.7.0",
"astro": "^6.1.1",
"wrangler": "^4.78.0"
"wrangler": "^4.80.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
Expand Down
13 changes: 13 additions & 0 deletions landing/wrangler.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"compatibility_date": "2026-04-04",
"compatibility_flags": ["global_fetch_strictly_public"],
"name": "landing",
"main": "@astrojs/cloudflare/entrypoints/server",
"assets": {
"directory": "./dist",
"binding": "ASSETS"
},
"observability": {
"enabled": true
}
}