import type { NextConfig } from "next"; const nextConfig: NextConfig = { env: { NEXT_PUBLIC_APP_VERSION: process.env.NEXT_PUBLIC_APP_VERSION || "dev", }, }; export default nextConfig;