import createNextIntlPlugin from 'next-intl/plugin'; import pkg from "./package.json" assert { type: "json" }; const withNextIntl = createNextIntlPlugin(); /** @type {import('next').NextConfig} */ const nextConfig = { output: "standalone", experimental: { instrumentationHook: true, }, env: { NEXT_PUBLIC_APP_VERSION: pkg.version, }, }; export default withNextIntl(nextConfig);