From 2e54c58300580bf70260cca8a2e3e70db5202e2b Mon Sep 17 00:00:00 2001 From: "[dyad]" Date: Sun, 18 Jan 2026 14:04:15 +0100 Subject: [PATCH] Reverted all changes back to version 0010c8a5353e9d80af457bd91106f150faaf4c0f --- next.config.js => next.config.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) rename next.config.js => next.config.ts (63%) diff --git a/next.config.js b/next.config.ts similarity index 63% rename from next.config.js rename to next.config.ts index efa196e..a23e855 100644 --- a/next.config.js +++ b/next.config.ts @@ -1,7 +1,6 @@ -const withNextIntl = require('next-intl/plugin')('./src/i18n.ts'); +import type { NextConfig } from "next"; -/** @type {import('next').NextConfig} */ -const nextConfig = { +const nextConfig: NextConfig = { webpack: (config) => { if (process.env.NODE_ENV === "development") { config.module.rules.push({ @@ -15,4 +14,4 @@ const nextConfig = { }, }; -module.exports = withNextIntl(nextConfig); \ No newline at end of file +export default nextConfig;