1import type { NextConfig } from "next"; 2import { version } from "./package.json" 3 4const nextConfig: NextConfig = { 5 env: { 6 version 7 }, 8}; 9 10export default nextConfig; 11 12