The Zod and Lucide-react libraries have been updated to version ^3.23.0 and ^0.372.0, respectively, in all packages. This change ensures that all packages are using the latest stable versions of these libraries, keeping the codebase up-to-date and minimizing potential compatibility issues.
Sentry Monitoring / @kit/sentry
Please set the following environment variable:
MONITORING_INSTRUMENTATION_PROVIDER=sentry
NEXT_PUBLIC_SENTRY_DSN=your_dsn
Create the following file at the root of your project:
export * from '@kit/sentry/config/client';
Create the following file at the root of your project:
export * from '@kit/sentry/config/server';
Create the following file at the root of your project:
export * from '@kit/sentry/config/edge';
Finally, update the Next.js configuration in your next.config.js file:
import { withSentryConfig } from "@sentry/nextjs";
// wrap your Next.js configuration with the Sentry configuration
withSentryConfig(nextConfig);