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

17
next.config.ts Normal file
View File

@@ -0,0 +1,17 @@
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;