Files
Synapsis/next.config.ts
T
Christopher a87977241c Refactor chat encryption to use sodium, update API
Replaces legacy chat encryption modules with new sodium-based implementation. Adds and updates API routes for chat key management and debugging, introduces new hooks and scripts for sodium chat, and updates related database schema and configuration. Removes old crypto modules and updates dependencies accordingly.
2026-01-28 06:07:03 -08:00

9 lines
173 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Empty turbopack config to silence the warning
turbopack: {},
};
export default nextConfig;