feat: persist push subscriptions in sqlite
All checks were successful
CI / Lint, typecheck and build (push) Successful in 9m54s

This commit is contained in:
zv
2026-06-13 22:03:37 +02:00
parent 5a8e39dbe2
commit 1ae1be68ec
11 changed files with 668 additions and 68 deletions

View File

@@ -3,6 +3,7 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
allowedDevOrigins: ["192.168.0.174"],
reactStrictMode: true,
serverExternalPackages: ["better-sqlite3"],
};
export default nextConfig;