Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
443 changes: 443 additions & 0 deletions messages/de.json

Large diffs are not rendered by default.

443 changes: 443 additions & 0 deletions messages/en.json

Large diffs are not rendered by default.

443 changes: 443 additions & 0 deletions messages/pl.json

Large diffs are not rendered by default.

9 changes: 7 additions & 2 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import { withSentryConfig } from "@sentry/nextjs";
import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";

const withNextIntl = createNextIntlPlugin();

const nextConfig: NextConfig = {
env: {
Expand Down Expand Up @@ -44,8 +47,10 @@ const nextConfig: NextConfig = {
},
};

const configWithIntl = withNextIntl(nextConfig);

export default process.env.SENTRY_DSN
? withSentryConfig(nextConfig, {
? withSentryConfig(configWithIntl, {
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
authToken: process.env.SENTRY_AUTH_TOKEN,
Expand All @@ -63,4 +68,4 @@ export default process.env.SENTRY_DSN
// Disables the Sentry SDK build-time telemetry
telemetry: false,
})
: nextConfig;
: configWithIntl;
Loading
Loading