diff --git a/next.config.ts b/next.config.mjs similarity index 74% rename from next.config.ts rename to next.config.mjs index a23e855..36dd85a 100644 --- a/next.config.ts +++ b/next.config.mjs @@ -1,6 +1,5 @@ -import type { NextConfig } from "next"; - -const nextConfig: NextConfig = { +/** @type {import('next').NextConfig} */ +const nextConfig = { webpack: (config) => { if (process.env.NODE_ENV === "development") { config.module.rules.push({ @@ -14,4 +13,4 @@ const nextConfig: NextConfig = { }, }; -export default nextConfig; +export default nextConfig; \ No newline at end of file