Files
wtr/next.config.ts
zv 1ae1be68ec
All checks were successful
CI / Lint, typecheck and build (push) Successful in 9m54s
feat: persist push subscriptions in sqlite
2026-06-13 22:03:37 +02:00

10 lines
216 B
TypeScript

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