12 lines
235 B
TypeScript
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;
|