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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ dist/

# Wrangler / Miniflare local state
.wrangler/
wrangler.preview*.jsonc

# Data
data.db
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ A conversion-focused landing page template built with [EmDash](https://github.co

```bash
pnpm install
pnpm bootstrap
pnpm dev
```

Expand Down
8 changes: 4 additions & 4 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@ import { defineConfig, fontProviders } from "astro/config";
import emdash from "emdash/astro";

export default defineConfig({
site: "https://emdashcms.com",
output: "server",
adapter: cloudflare(),
experimental: {
cache: {
provider: cacheCloudflare(),
Comment thread
khoinguyenpham04 marked this conversation as resolved.
},
cache: {
provider: cacheCloudflare(),
},
image: {
layout: "constrained",
Expand All @@ -21,6 +20,7 @@ export default defineConfig({
vite: {
ssr: {
optimizeDeps: {
exclude: ["emdash/ui"],
// Pre-bundle so it isn't discovered mid-render, which would trigger
// a Vite dep re-optimization and break in-flight worker imports
// under the Cloudflare dev runner (workerd).
Expand Down
27 changes: 11 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "emdashcms-com",
"version": "0.0.3",
"private": true,
"packageManager": "pnpm@11.9.0",
"type": "module",
"scripts": {
"dev": "astro dev",
Expand All @@ -11,29 +12,23 @@
"typecheck": "astro check"
},
"dependencies": {
"@astrojs/cloudflare": "https://pkg.pr.new/@astrojs/cloudflare@a9949197bd",
"@astrojs/react": "^5.0.0",
"@emdash-cms/cloudflare": "^0.12.0",
"@astrojs/cloudflare": "14.0.1",
"@astrojs/react": "^6.0.0",
"@emdash-cms/cloudflare": "^0.24.1",
"@iconify-json/ph": "^1.2.2",
"astro": "https://pkg.pr.new/astro@a9949197bd",
"astro-iconset": "^0.0.4",
"emdash": "^0.12.0",
"astro": "7.0.3",
"astro-iconset": "^0.0.6",
"emdash": "^0.24.1",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@astrojs/check": "^0.9.7",
"@cloudflare/workers-types": "^4.20260305.1",
"wrangler": "^4.83.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"workerd"
]
"@astrojs/check": "^0.9.9",
"@cloudflare/workers-types": "4.20260627.1",
"wrangler": "^4.105.0"
},
"emdash": {
"label": "Marketing",
"seed": "seed/seed.json"
}
}
}
4,454 changes: 2,008 additions & 2,446 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
packages:
- "."

allowBuilds:
better-sqlite3: true
esbuild: true
sharp: true
workerd: true

onlyBuiltDependencies:
- better-sqlite3
- esbuild
- sharp
- workerd

minimumReleaseAge: 1440
minimumReleaseAgeExclude:
- emdash
- "@emdash-cms/*"
- "@atcute/*"
blockExoticSubdeps: true
Binary file added public/landing/hero/hero-dash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions seed/seed.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,14 @@
{ "type": "custom", "label": "Documentation", "url": "https://docs.emdashcms.com", "target": "_blank" },
{ "type": "custom", "label": "Playground", "url": "https://try.emdashcms.com", "target": "_blank" }
]
},
{
"name": "footer_social",
"label": "Footer: Social Links",
"items": [
{ "type": "custom", "label": "Discord", "url": "https://discord.gg/YY9vBaQRYt", "target": "_blank" },
{ "type": "custom", "label": "GitHub", "url": "https://github.com/emdash-cms/emdash", "target": "_blank" }
]
}
],

Expand Down
Loading