10 lines
194 B
TypeScript
10 lines
194 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
env: {
|
|
NEXT_PUBLIC_APP_VERSION: process.env.NEXT_PUBLIC_APP_VERSION || "dev",
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|