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
3 changes: 2 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { defineConfig } from 'astro/config';
import tailwindcss from '@tailwindcss/vite';
import sitemap from '@astrojs/sitemap';
import react from '@astrojs/react';

// COOP/COEP enable Cross-Origin Isolation so the in-browser ZK prover can
// use SharedArrayBuffer + Web Workers for multi-threaded proving. Without
Expand All @@ -17,7 +18,7 @@ export default defineConfig({
build: {
inlineStylesheets: 'auto',
},
integrations: [sitemap()],
integrations: [sitemap(), react({ include: ['**/*.tsx'] })],
vite: {
plugins: [tailwindcss()],
server: { headers: crossOriginIsolation },
Expand Down
6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"lhci": "lhci autorun"
},
"dependencies": {
"@astrojs/react": "^5.0.7",
"@astrojs/sitemap": "3.7.3",
"@atheonxyz/verity": "0.3.2-alpha",
"@fontsource/geist-mono": "^5.1.0",
Expand All @@ -28,11 +29,16 @@
"@noir-lang/types": "1.0.0-beta.19",
"@tailwindcss/vite": "^4.0.0",
"astro": "^6.4.6",
"framer-motion": "^11.11.17",
"pako": "2.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^4.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@lhci/cli": "^0.14.0",
"@playwright/test": "^1.49.0",
"@types/node": "^22.10.0",
Expand Down
495 changes: 495 additions & 0 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Loading
Loading