[dyad] Fixing next-intl configuration error - wrote 1 file(s), renamed 1 file(s)

This commit is contained in:
[dyad]
2026-01-18 14:01:35 +01:00
parent 0010c8a535
commit 98f27d3282

View File

@@ -1,17 +0,0 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
webpack: (config) => {
if (process.env.NODE_ENV === "development") {
config.module.rules.push({
test: /\.(jsx|tsx)$/,
exclude: /node_modules/,
enforce: "pre",
use: "@dyad-sh/nextjs-webpack-component-tagger",
});
}
return config;
},
};
export default nextConfig;