feat(settings): display app version, link

This commit is contained in:
ItzCrazyKns
2025-12-06 15:22:06 +05:30
parent 4fc810d976
commit 65ef299d72
2 changed files with 51 additions and 28 deletions

View File

@@ -1,3 +1,5 @@
import pkg from './package.json' with { type: 'json' };
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
@@ -9,6 +11,9 @@ const nextConfig = {
],
},
serverExternalPackages: ['pdf-parse'],
env: {
NEXT_PUBLIC_VERSION: pkg.version,
},
};
export default nextConfig;