import type { NextConfig } from "next" import packageJson from "./package.json" const nextConfig: NextConfig = { /* config options here */ output: "standalone", // Support for subdirectory deployment (e.g., https://example.com/nextaidrawio) // Set NEXT_PUBLIC_BASE_PATH environment variable to your subdirectory path (e.g., /nextaidrawio) basePath: process.env.NEXT_PUBLIC_BASE_PATH || "", env: { APP_VERSION: packageJson.version, }, } export default nextConfig