Files
pet-adviser/next.config.ts
2025-08-16 13:08:52 +02:00

9 lines
180 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: 'standalone',
telemetry: false,
};
export default nextConfig;