Files
HabitTrove/next.config.ts
2024-12-30 13:57:28 -05:00

9 lines
157 B
TypeScript

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