One Calendar is a privacy-first calendar web app built with Next.js. It has modern security features, including e2ee, password-protected sharing, and self-destructing share links ๐Ÿ“… calendar.xyehr.cn
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: update next config

authored by

Evan Huang and committed by
GitHub
64461b81 4e135c17

+2 -1
+2 -1
next.config.ts
··· 1 1 import { execSync } from "node:child_process"; 2 2 import type { NextConfig } from "next"; 3 3 import packageJson from "./package.json"; 4 + import withRspack from "next-rspack"; 4 5 5 6 const getGitCommit = () => { 6 7 try { ··· 31 32 }, 32 33 }; 33 34 34 - export default nextConfig; 35 + export default withRspack(nextConfig);