Files
next-ai-draw-io/next.config.ts

13 lines
259 B
TypeScript
Raw Permalink Normal View History

import type { NextConfig } from "next"
import packageJson from "./package.json"
const nextConfig: NextConfig = {
/* config options here */
output: "standalone",
env: {
APP_VERSION: packageJson.version,
},
}
export default nextConfig