Schneller, Ramez

This commit is contained in:
BuildTools
2025-12-19 23:36:05 +01:00
parent 5d780e0c36
commit e70d305cdb
17 changed files with 928 additions and 83 deletions

View File

@@ -1,7 +1,7 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
};
export default nextConfig;
import type { NextConfig } from 'next';
import createNextIntlPlugin from 'next-intl/plugin';
const nextConfig: NextConfig = {};
const withNextIntl = createNextIntlPlugin('./i18n/request.ts');
export default withNextIntl(nextConfig);