Files
NoteAI/next.config.ts
T
2026-02-25 16:30:39 +08:00

11 lines
211 B
TypeScript

import type { NextConfig } from "next";
import packageJson from "./package.json";
const nextConfig: NextConfig = {
env: {
NEXT_PUBLIC_APP_VERSION: packageJson.version,
},
};
export default nextConfig;