This commit adds new Admin and Accounts pages, while also improving code by refactoring various portions such as extracting services from the join page and dynamically importing packages in logging and monitoring code. The build command is also removed from the WordPress package, and SWC minification is enabled in the Next.js configuration. Updated marketing content is also included in this commit.
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);