Files
nostr-vibed/next.config.ts

9 lines
163 B
TypeScript

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