Files
NoteAI/next.config.ts
T
2026-02-24 09:53:19 +08:00

12 lines
235 B
TypeScript

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