This commit is contained in:
Mishig Davaadorj
2025-06-09 18:47:30 +02:00
parent 3e587b42d0
commit 3fd24a5802
@@ -1,4 +1,5 @@
import type { NextConfig } from "next"; import type { NextConfig } from "next";
import packageJson from './package.json';
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
/* config options here */ /* config options here */
@@ -8,6 +9,7 @@ const nextConfig: NextConfig = {
eslint: { eslint: {
ignoreDuringBuilds: true, ignoreDuringBuilds: true,
}, },
generateBuildId: () => packageJson.version,
}; };
export default nextConfig; export default nextConfig;