- Fix user.id -> user.userId in subscription and device registration - Fix StatusIndicator to use DeviceStatus enum instead of strings - Add Recharts type declarations for React 19 compatibility - Add lightningcss WASM fallback for CI builds - Remove unused LogsModule from backend - Simplify CLAUDE.md documentation Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
272 B
TypeScript
11 lines
272 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
// Tailwind requires lightningcss; enforce WASM fallback to avoid missing native builds in CI.
|
|
process.env.LIGHTNINGCSS_SKIP_BINDING ??= "1";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
};
|
|
|
|
export default nextConfig;
|