Reverted all changes back to version 0010c8a535

This commit is contained in:
[dyad]
2026-01-18 14:04:15 +01:00
parent 98f27d3282
commit 2e54c58300

View File

@@ -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);
export default nextConfig;